/* Private report attachments reuse the Aurora palette, not Excel's product green. */
.excel-attachment {
  box-sizing: border-box;
  width: 560px;
  max-width: 100%;
  margin: 12px 0;
  border: 1px solid #d8e3ee;
  border-radius: 12px;
  background: linear-gradient(115deg, #f5fafc, #f8f9fd);
  overflow-wrap: anywhere;
}
.excel-attachment:first-child { margin-top: 0; }
.excel-attachment:last-child { margin-bottom: 0; }
.excel-download {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 14px;
  border-radius: 11px;
  color: #243f60;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}
.excel-download:hover:not([aria-busy="true"]) {
  color: #1b4267;
  background-color: #edf4fb;
  box-shadow: inset 0 0 0 1px #bed2e7;
}
.excel-download:focus-visible { outline: 2px solid #6b95bb; outline-offset: -2px; }
.excel-download[aria-busy="true"] { cursor: wait; }
.excel-file-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  height: 40px;
  border: 1px solid #d6e6f0;
  border-radius: 9px;
  color: #5281a2;
  background: #fafdff;
}
.excel-file-icon svg { width: 23px; height: 26px; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; }
.excel-file-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.excel-file-name { color: #243f60; font-size: 14px; font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.excel-file-type { color: #6d8098; font-size: 12px; line-height: 1.5; }
.excel-file-action { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; color: #426a91; font-size: 12px; font-weight: 500; }
.excel-file-action svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.excel-download[aria-busy="true"] .excel-file-action { opacity: .5; }
.excel-file-description { padding: 0 14px 12px; color: #677b93; font-size: 12px; line-height: 1.65; }
.excel-download-status { display: block; color: #4e6987; font-size: 12px; line-height: 1.65; overflow-wrap: anywhere; }
.excel-download-status:not(:empty) { margin: 0 14px; padding: 9px 0 12px; border-top: 1px solid #dfe8f0; }
.excel-download-status[data-state="error"] { color: #985054; }
.creation-excel-attachments { margin-top: 12px; }
@media (max-width: 520px) {
  .excel-download { gap: 9px; padding: 12px; }
  .excel-file-icon { flex-basis: 30px; height: 36px; }
  .excel-file-action { gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .excel-download { transition: none; }
}
