/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  background-color: #1a1a1a;
  background-attachment: fixed;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  display: flex;
}

h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  letter-spacing: -.3px;
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 700;
}

p {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  text-align: center;
  font-size: 16px;
}

.card {
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.card-title {
  color: #fff;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
}

.card-subtitle {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px;
  font-size: 13px;
}

.field {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  display: flex;
}

label, .field-label {
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  font-weight: 600;
}

input, select {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
}

input::placeholder {
  color: rgba(255, 255, 255, .45);
}

input:focus, select:focus {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
}

select {
  cursor: pointer;
}

select option {
  color: #333;
  background: #fff;
}

.error-text {
  color: #fca5a5;
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
}

button {
  color: #000;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

button.btn-ghost {
  color: #fff;
  box-shadow: none;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
}

button.btn-green {
  color: #fff;
  background: #22c55e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, .3);
}

button.btn-red {
  color: #fff;
  box-shadow: none;
  background: rgba(220, 53, 69, .85);
}

.stats-row {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  display: grid;
}

.stat-box {
  text-align: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 14px;
}

.stat-box .stat-num {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  font-size: 11px;
}

.queue-info {
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  padding: 24px 32px;
}

.queue-position {
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  margin: 16px 0 8px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
}

.pulse-ring {
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  font-size: 28px;
  animation: 1.5s ease-in-out infinite pulse;
  display: flex;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.08);
  }
}

.ring-animation {
  animation: 1.4s ease-in-out infinite ring;
}

@keyframes ring {
  0%, 100% {
    transform: scale(1)rotate(0);
  }

  20% {
    transform: scale(1.1)rotate(-8deg);
  }

  40% {
    transform: scale(1.1)rotate(8deg);
  }

  60% {
    transform: scale(1.05)rotate(-4deg);
  }

  80% {
    transform: scale(1.05)rotate(4deg);
  }
}

.toast {
  color: #fff;
  z-index: 100;
  white-space: nowrap;
  pointer-events: none;
  background: rgba(0, 0, 0, .75);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.call-controls {
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, 0) 100%);
  justify-content: center;
  gap: 12px;
  padding: 20px 0 36px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.call-btn {
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  width: auto;
  min-width: 72px;
  box-shadow: none;
  background: rgba(255, 255, 255, .18);
  border: none;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.call-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.call-btn.active {
  background: rgba(220, 53, 69, .85);
}

.call-btn.danger {
  background: rgba(220, 53, 69, .9);
}

.call-btn .btn-icon {
  font-size: 24px;
  line-height: 1;
}

.customer-pill {
  -webkit-backdrop-filter: blur(12px);
  z-index: 20;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 8px 18px;
  display: flex;
  position: fixed;
  top: 16px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.customer-pill .pill-name {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.customer-pill .pill-address {
  color: rgba(255, 255, 255, .7);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  overflow: hidden;
}

.customer-pill .pill-dot {
  color: rgba(255, 255, 255, .3);
  flex-shrink: 0;
}

.customer-detail-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 18px 20px;
}

.customer-detail-card .detail-label {
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
}

.customer-detail-card .detail-name {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.customer-detail-card .detail-divider {
  background: rgba(255, 255, 255, .1);
  height: 1px;
  margin: 14px 0;
}

.customer-detail-card .detail-phone, .customer-detail-card .detail-address {
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.5;
}

.dashboard {
  color: #f1f5f9;
  background: #1a1a1a;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.dashboard-topbar {
  background: #1a1a1a;
  border-bottom: 1px solid #2e2d2d;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  display: flex;
}

.dashboard-topbar h2 {
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 700;
}

.dashboard-topbar .updated {
  color: #374151;
  font-size: 12px;
}

.dashboard-stats {
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  display: flex;
}

.dashboard-stat {
  background: #2c2c2c;
  border: 1px solid #7c7c96;
  border-radius: 10px;
  flex: 1;
  min-width: 110px;
  padding: 14px 20px;
}

.dashboard-stat .stat-value {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.dashboard-stat .stat-key {
  color: #bec3ca;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
}

.dashboard-tabs {
  scrollbar-width: none;
  gap: 6px;
  padding: 0 24px 16px;
  display: flex;
  overflow-x: auto;
}

.dashboard-tab {
  cursor: pointer;
  color: #4b5563;
  white-space: nowrap;
  width: auto;
  box-shadow: none;
  background: #2c2c2c;
  border: 1px solid #28282b;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 400;
  transition: background .15s, color .15s;
  display: flex;
}

.dashboard-tab.active {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
  font-weight: 600;
}

.dashboard-tab .tab-count {
  color: #374151;
  background: #252538;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-tab.active .tab-count {
  color: #fff;
  background: rgba(255, 255, 255, .22);
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  padding: 0 24px 32px;
  display: grid;
}

.taker-card {
  background: #1a1a2e;
  border: 1px solid #252538;
  border-radius: 12px;
  padding: 18px;
}

.taker-card-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  display: flex;
}

.taker-name {
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 700;
}

.taker-branch {
  color: #4b5563;
  margin-top: 2px;
  font-size: 12px;
}

.taker-badges {
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  display: flex;
}

.status-badge {
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.in-call {
  color: #3b82f6;
  background: rgba(59, 130, 246, .15);
  border: 1px solid rgba(59, 130, 246, .25);
}

.status-badge.available {
  color: #22c55e;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .25);
}

.status-badge.offline {
  color: #4b5563;
  background: rgba(75, 85, 99, .15);
  border: 1px solid rgba(75, 85, 99, .25);
}

.call-timer {
  color: #475569;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
}

.taker-divider {
  background: #252538;
  height: 1px;
  margin: 12px 0;
}

.taker-section-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
}

.taker-customer-name {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

.taker-customer-address {
  color: #4b5563;
  margin-top: 3px;
  font-size: 12px;
}

.taker-prev-name {
  color: #64748b;
  font-size: 13px;
}

.taker-prev-address {
  color: #374151;
  margin-top: 3px;
  font-size: 12px;
}

.taker-empty {
  color: #252538;
  font-size: 13px;
}

.dashboard-empty {
  text-align: center;
  padding: 80px 20px;
}

.dashboard-empty .empty-icon {
  opacity: .25;
  margin-bottom: 16px;
  font-size: 48px;
}

.dashboard-empty .empty-title {
  color: #374151;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.dashboard-empty .empty-sub {
  color: #2d2d44;
  font-size: 13px;
}

.dashboard-login {
  background: #0f0f1a;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  display: flex;
}

.dashboard-login-card {
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 36px 32px;
}

.dashboard-login-card h2 {
  color: #f1f5f9;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
}

.dashboard-login-card .login-sub {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 28px;
  font-size: 13px;
}

.dashboard-login-card .field-label {
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.dashboard-login-card input {
  color: #f1f5f9;
  background: #0f0f1a;
  border: 1px solid #252538;
  border-radius: 8px;
}

.dashboard-login-card input:focus {
  background: #0f0f1a;
  border-color: #fff;
}

.dashboard-login-card input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.dashboard-login-card .login-btn {
  color: #000;
  box-shadow: none;
  background: #fff;
  border-radius: 8px;
}

.dashboard-login-card .login-btn:hover {
  color: #fff;
  background: #1a1a1a;
}

.dashboard-error {
  color: #f87171;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
}

.taker-card.in-call {
  border-left-color: #3b82f6;
}

.taker-card.available {
  border-left-color: #22c55e;
}

.taker-card.offline {
  border-left-color: #4b5563;
}

.dashboard-stat.blue .stat-value {
  color: #3b82f6;
}

.dashboard-stat.green .stat-value {
  color: #22c55e;
}

.dashboard-stat.gray .stat-value {
  color: #4b5563;
}

.dashboard-stat.purple .stat-value {
  color: #fa8b8b;
}

.taker-section {
  margin-bottom: 12px;
}

.taker-section:last-child {
  margin-bottom: 0;
}

.login-field {
  margin-bottom: 14px;
}

.login-field:last-of-type {
  margin-bottom: 20px;
}

.wa-bubble {
  cursor: pointer;
  z-index: 200;
  background: #25d366;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
}

.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .6);
}

.wa-bubble svg {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  color: #1a1a2e;
  z-index: 199;
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  max-width: 200px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  position: fixed;
  bottom: 90px;
  right: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.wa-tooltip:after {
  content: "";
  border-top: 8px solid #fff;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 8px solid rgba(0, 0, 0, 0);
  width: 0;
  height: 0;
  position: absolute;
  bottom: -8px;
  right: 20px;
}

.wa-panel {
  z-index: 200;
  background: #fff;
  border-radius: 16px;
  width: 280px;
  padding: 20px;
  animation: .2s slideUp;
  position: fixed;
  bottom: 90px;
  right: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-panel-title {
  color: #1a1a2e;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.wa-panel-sub {
  color: #64748b;
  margin-bottom: 16px;
  font-size: 12px;
}

.wa-panel select {
  color: #1a1a2e;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.wa-panel select:focus {
  background: #f8fafc;
  border-color: #25d366;
}

.wa-panel select option {
  color: #1a1a2e;
}

.wa-text-btn {
  color: #fff;
  box-shadow: none;
  background: #25d366;
  border-radius: 8px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
}

.wa-text-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.wa-text-btn:disabled {
  background: #94a3b8;
  transform: none;
}

.wa-close {
  color: #94a3b8;
  cursor: pointer;
  width: auto;
  box-shadow: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
}

.wa-close:hover {
  color: #475569;
  box-shadow: none;
  transform: none;
}

.call-timer-pill {
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-variant-numeric: tabular-nums;
  z-index: 21;
  pointer-events: none;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.rec-badge {
  color: #fff;
  z-index: 30;
  letter-spacing: .05em;
  pointer-events: none;
  background: rgba(220, 38, 38, .9);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  animation: 2s ease-in-out infinite recPulse;
  position: fixed;
  top: 16px;
  left: 16px;
}

@keyframes recPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

.recording-notice {
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
}

.dashboard-main-tabs {
  border-bottom: 1px solid #252538;
  gap: 4px;
  margin-bottom: 0;
  padding: 0 24px 16px;
  display: flex;
}

.main-tab {
  cursor: pointer;
  color: #4b5563;
  width: auto;
  box-shadow: none;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  margin-top: 0;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}

.main-tab:hover {
  color: #94a3b8;
  box-shadow: none;
  background: #1a1a2e;
  transform: none;
}

.main-tab.active {
  color: #fff;
  background: #6366f1;
  border-color: #6366f1;
  font-weight: 600;
}

.recordings-filters {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 0 20px;
  display: flex;
}

.rec-filter-select {
  color: #e2e8f0;
  background: #1a1a2e;
  border: 1px solid #252538;
  border-radius: 8px;
  width: auto;
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
}

.rec-filter-input {
  color: #e2e8f0;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  background: #1a1a2e;
  border: 1px solid #252538;
  border-radius: 8px;
  width: auto;
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
}

.rec-count {
  color: #4b5563;
  margin-left: auto;
  font-size: 12px;
}

.recordings-table-wrap {
  border: 1px solid #252538;
  border-radius: 12px;
  overflow-x: auto;
}

.recordings-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.recordings-table th {
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  white-space: nowrap;
  background: #151525;
  border-bottom: 1px solid #252538;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
}

.recordings-table td {
  vertical-align: top;
  color: #e2e8f0;
  border-bottom: 1px solid #1a1a2e;
  padding: 14px 16px;
}

.recordings-table tr:last-child td {
  border-bottom: none;
}

.recordings-table tr:hover td {
  background: #1a1a2e;
}

.rec-date {
  color: #e2e8f0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.rec-time {
  color: #4b5563;
  margin-top: 2px;
  font-size: 12px;
}

.rec-taker {
  color: #a78bfa;
  white-space: nowrap;
  font-weight: 600;
}

.rec-branch {
  color: #64748b;
  white-space: nowrap;
}

.rec-customer-name {
  color: #e2e8f0;
  font-weight: 600;
}

.rec-customer-sub {
  color: #4b5563;
  margin-top: 2px;
  font-size: 12px;
}

.rec-duration {
  color: #22c55e;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.rec-file-btns {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.rec-file-btn {
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-flex;
}

.rec-file-btn:hover {
  opacity: .8;
}

.rec-file-btn.combined {
  color: #818cf8;
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(99, 102, 241, .25);
}

.rec-file-btn.ordertaker {
  color: #60a5fa;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .2);
}

.rec-file-btn.customer {
  color: #4ade80;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .2);
}

.rec-player-wrap {
  margin-top: 8px;
}

.rec-close-player {
  color: #94a3b8;
  cursor: pointer;
  width: auto;
  box-shadow: none;
  background: #252538;
  border: none;
  border-radius: 6px;
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 12px;
}

.rec-actions {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  display: flex;
}

.rec-action-btn {
  cursor: pointer;
  width: 32px;
  height: 32px;
  box-shadow: none;
  background: #1a1a2e;
  border: 1px solid #252538;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  transition: background .15s;
  display: flex;
}

.rec-action-btn:hover:not(:disabled) {
  box-shadow: none;
  transform: none;
}

.rec-action-btn.play:hover {
  background: rgba(99, 102, 241, .2);
}

.rec-action-btn.delete:hover {
  background: rgba(220, 38, 38, .2);
}

.rec-action-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/