/*
 * LiveStudios Client Production Requests
 * Consolidated from the verified live portal.
 */

#clientProductionRequestsMount {
    display: block;
    width: 100%;
    margin-top: 18px;
  }

  .dashboard-requests-panel {
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(111, 191, 244, 0.2);
    border-radius: 24px;
    background:
      linear-gradient(
        145deg,
        rgba(30, 87, 126, 0.27),
        rgba(8, 30, 52, 0.38)
      );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 18px 48px rgba(1, 13, 26, 0.2);
  }

  .dashboard-requests-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 17px;
  }

  .dashboard-requests-eyebrow {
    margin-bottom: 6px;
    color: #6ee9ae;
    font-size: 0.69rem;
    font-weight: 820;
    letter-spacing: 0.16em;
  }

  .dashboard-requests-header h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    font-weight: 300;
    letter-spacing: -0.035em;
  }

  .dashboard-requests-header p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.45;
  }

  .dashboard-requests-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
  }

  .dashboard-requests-new,
  .dashboard-requests-refresh {
    min-height: 39px;
    border-radius: 999px;
    padding: 0 14px;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 760;
    cursor: pointer;
  }

  .dashboard-requests-new {
    border: 1px solid rgba(110, 233, 174, 0.27);
    background: rgba(46, 159, 107, 0.16);
    color: #a1f2c7;
  }

  .dashboard-requests-refresh {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.78);
  }

  .dashboard-requests-list {
    display: grid;
    gap: 10px;
  }

  .dashboard-request-card {
    overflow: hidden;
    border: 1px solid rgba(111, 191, 244, 0.13);
    border-radius: 17px;
    background:
      linear-gradient(
        145deg,
        rgba(29, 79, 112, 0.2),
        rgba(8, 29, 49, 0.25)
      );
  }

  .dashboard-request-row {
    width: 100%;
    display: grid;
    grid-template-columns:
      minmax(0, 1.4fr)
      minmax(125px, 0.65fr)
      minmax(150px, auto)
      32px;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 15px 17px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .dashboard-request-row:hover {
    background: rgba(74, 151, 198, 0.08);
  }

  .dashboard-request-title {
    font-weight: 770;
    overflow-wrap: anywhere;
  }

  .dashboard-request-code {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.74rem;
  }

  .dashboard-request-date {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.8rem;
  }

  .dashboard-request-status {
    justify-self: end;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 0.69rem;
    font-weight: 820;
    text-align: center;
  }

  .dashboard-status-pending {
    background: rgba(104, 189, 255, 0.13);
    color: #a4d8ff;
  }

  .dashboard-status-production {
    background: rgba(255, 193, 92, 0.13);
    color: #ffd28b;
  }

  .dashboard-status-approval {
    background: rgba(145, 116, 255, 0.14);
    color: #cbbaff;
  }

  .dashboard-status-approved {
    background: rgba(76, 205, 255, 0.13);
    color: #a1e7ff;
  }

  .dashboard-status-rotation {
    background: rgba(101, 233, 170, 0.14);
    color: #98f2c5;
  }

  .dashboard-request-chevron {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.67);
  }

  .dashboard-request-details {
    padding: 16px 17px 18px;
    border-top: 1px solid rgba(111, 191, 244, 0.11);
    background: rgba(7, 31, 53, 0.25);
  }

  .dashboard-request-detail-grid {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dashboard-request-detail {
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
    background: rgba(28, 79, 113, 0.13);
  }

  .dashboard-request-detail span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.66rem;
    font-weight: 760;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }

  .dashboard-request-detail strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
  }

  .dashboard-request-explanation {
    margin-top: 11px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(111, 191, 244, 0.07);
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .dashboard-requests-loading,
  .dashboard-requests-empty,
  .dashboard-requests-error {
    padding: 22px 16px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.52);
    text-align: center;
  }

  @media (max-width: 700px) {
    .dashboard-requests-panel {
      padding: 17px;
      border-radius: 20px;
    }

    .dashboard-requests-header {
      display: grid;
    }

    .dashboard-requests-actions {
      width: 100%;
    }

    .dashboard-requests-new,
    .dashboard-requests-refresh {
      flex: 1;
    }

    .dashboard-request-row {
      grid-template-columns:
        minmax(0, 1fr)
        auto;
      gap: 8px 11px;
    }

    .dashboard-request-date {
      grid-column: 1;
    }

    .dashboard-request-status {
      grid-column: 2;
      grid-row: 1;
    }

    .dashboard-request-chevron {
      grid-column: 2;
      grid-row: 2;
    }

    .dashboard-request-detail-grid {
      grid-template-columns: 1fr;
    }
  }

  .dashboard-review-media {
    display: grid;
    gap: 13px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .dashboard-review-file-row,
  .dashboard-review-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .dashboard-review-play,
  .dashboard-review-download {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(122, 211, 255, 0.29);
    border-radius: 15px;
    background:
      linear-gradient(
        145deg,
        rgba(62, 159, 215, 0.36),
        rgba(20, 75, 116, 0.36)
      );
    color: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 10px 28px rgba(1, 15, 31, 0.25);
    cursor: pointer;
    transition:
      transform 150ms ease,
      border-color 150ms ease,
      box-shadow 150ms ease;
  }

  .dashboard-review-play:hover {
    transform: translateY(-1px);
  }

  .dashboard-review-play.playing {
    border-color: rgba(110, 233, 174, 0.6);
    box-shadow:
      0 0 0 5px rgba(110, 233, 174, 0.09),
      0 10px 30px rgba(1, 15, 31, 0.3);
  }

  .dashboard-review-play-icon {
    margin-left: 2px;
    font-size: 1.2rem;
    line-height: 1;
  }

  .dashboard-review-play audio {
    display: none;
  }

  .dashboard-review-download {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 150ms ease,
      border-color 150ms ease,
      box-shadow 150ms ease;
  }

  .dashboard-review-download:hover {
    transform: translateY(-1px);
    border-color: rgba(110, 233, 174, 0.52);
  }

  .dashboard-review-download svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dashboard-review-filename {
    min-width: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    overflow-wrap: anywhere;
  }

  .dashboard-review-approve,
  .dashboard-review-changes {
    min-height: 47px;
    border-radius: 14px;
    padding: 0 18px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 790;
    cursor: pointer;
  }

  .dashboard-review-approve {
    border: 1px solid rgba(110, 233, 174, 0.34);
    background: rgba(42, 153, 103, 0.21);
    color: #a7f6cc;
  }

  .dashboard-review-changes {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.78);
  }

  .dashboard-review-approve:disabled,
  .dashboard-review-changes:disabled {
    opacity: 0.58;
    cursor: wait;
  }

  @media (max-width: 700px) {
    .dashboard-review-controls {
      align-items: stretch;
    }

    .dashboard-review-approve,
    .dashboard-review-changes {
      flex: 1 1 150px;
    }
  }
