/* ==========================================
   THEME VARIABLES - Light Mode (Default)
   ========================================== */
:root {
  /* Brand Colors - Consistent across themes */
  --primary-color: #FACC15; /* Flash Yellow */
  --primary-hover: #EAB308; /* Darker Yellow */
  --accent-color: #ffa500; /* Orange */
  --success-color: #22c55e;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  
  /* Light Theme Colors */
  --bg-primary: #F9FAFB;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-input: #FFFFFF;
  --text-input: #111827;
  --border-input: #D1D5DB;
  --bg-modal: #FFFFFF;
  
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  
  --border-color: #E5E7EB;
  --border-light: #F3F4F6;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-heading: "Cairo", "Tajawal", sans-serif;
  --font-body: "Tajawal", sans-serif;
}

/* ==========================================
   DARK THEME - Applied via .dark-theme class
   ========================================== */
.dark-theme {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-card: #1a1a1a;
  --bg-input: #222222;
  --text-input: #FFFFFF;
  --border-input: #444444;
  --bg-modal: #1a1a1a;
  
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  
  --border-color: #333333;
  --border-light: #2a2a2a;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  direction: rtl; /* Arabic Interface */
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Helper Classes */
.text-primary {
  color: var(--primary-color);
}
.text-center {
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-secondary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: rotate(180deg);
}

.theme-toggle-btn i {
  font-size: 1.1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #cccccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.features {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #000000;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #333;
  transition: 0.3s;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(45deg, #000000, #1a1a1a);
}

/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
  color: #777;
  margin-top: auto;
}

/* App Interface Specifics */
.app-container {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recorder-wrapper {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.mic-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 3rem;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mic-btn.recording {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.mic-btn:hover {
  transform: scale(1.05);
}

.status-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #888;
  height: 30px; /* Preserve space */
}

.result-area {
  width: 100%;
  max-width: 800px;
  background: var(--bg-color);
  border-radius: 15px;
  padding: 30px;
  min-height: 200px;
  position: relative;
  border: 1px solid #333;
}

.result-text {
  font-size: 1.1rem;
  white-space: pre-wrap;
  line-height: 1.8;
}

.copy-btn {
  position: absolute;
  top: 20px;
  left: 20px; /* Arabic RTL */
  background: transparent;
  border: 1px solid #555;
  color: #aaa;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
}

.copy-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* ========================================
   FV-SCOPED TRANSCRIPTION AREA STYLES
   Isolated, theme-aware styles for Copy Button fix
   ======================================== */

.fv-transcription-area {
  width: 100%;
  max-width: 800px;
  background: var(--bg-card);
  border-radius: 15px;
  padding: 30px;
  padding-top: 60px; /* Space for copy button */
  min-height: 200px;
  position: relative;
  border: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.fv-result-content {
  width: 100%;
}

.fv-result-text {
  font-size: 1.1rem;
  white-space: pre-wrap;
  line-height: 1.8;
  color: var(--text-primary);
}

/* Copy Button - Positioned absolute relative to .fv-transcription-area */
.fv-copy-btn {
  position: absolute;
  top: 15px;
  left: 15px; /* Arabic RTL layout */
  background: transparent;
  border: 1px solid var(--text-secondary, rgba(255,255,255,0.3));
  color: var(--text-secondary, #aaa);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  z-index: 10;
}

.fv-copy-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(250, 204, 21, 0.1);
}

.fv-copy-btn i {
  font-size: 0.85rem;
}

/* Loader */
.loader {
  display: none;
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  animation: rotation 1s linear infinite;
  margin: 20px auto;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* ============================================ */
/* Authentication Styles */
/* ============================================ */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.auth-wrapper {
  width: 100%;
  max-width: 450px;
}

.auth-card {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #333;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.auth-header h2 {
  color: var(--text-color);
  margin-bottom: 10px;
}

.auth-header p {
  color: #888;
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #ccc;
  font-size: 0.9rem;
}

.form-group input {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #222;
  color: var(--text-color);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
  direction: ltr;
  text-align: right;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
  color: #666;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.auth-message {
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.auth-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid var(--error-color);
  color: var(--error-color);
}

.auth-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
}

.auth-divider span {
  background: var(--bg-color);
  padding: 0 15px;
  color: #666;
  position: relative;
}

.back-link {
  display: block;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--primary-color);
}

/* ============================================ */
/* User Navigation Styles */
/* ============================================ */

.user-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.9rem;
}

.user-email i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* ============================================ */
/* History Section Styles */
/* ============================================ */

.history-section {
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  padding-bottom: 50px;
}

.history-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.history-header h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-header h3 i {
  color: var(--primary-color);
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.history-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.history-empty i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #444;
}

.history-empty p {
  font-size: 1rem;
}

/* Load More Button */
.load-more-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  background: var(--bg-input);
  border: 1px dashed var(--primary-color);
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.load-more-btn:hover {
  background: rgba(250, 204, 21, 0.1);
}

.load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.history-item {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-sm);
}

.history-item:hover {
  border-color: var(--primary-color);
}

.history-item-content {
  flex: 1;
  min-width: 0;
}

.history-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.history-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.history-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.history-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.history-action-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.history-action-btn.delete-history-btn:hover {
  border-color: var(--error-color);
  color: var(--error-color);
}

/* ============================================ */
/* Responsive Adjustments */
/* ============================================ */

@media (max-width: 768px) {
  .auth-card {
    padding: 30px 20px;
  }

  .user-nav {
    gap: 10px;
  }

  .user-email span {
    display: none;
  }

  .history-item {
    flex-direction: column;
  }

  .history-actions {
    align-self: flex-end;
  }
}

/* ============================================ */
/* Search Bar Styles */
/* ============================================ */

.search-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.search-input {
  width: 100%;
  padding: 16px 50px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
  outline: none;
  border-color: #FACC15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
  color: #666;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #FACC15; /* Yellow Icon */
  font-size: 1.1rem;
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  left: 15px; /* RTL layout */
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: color 0.2s;
}

.clear-search-btn:hover {
  color: #FACC15;
}

/* PDF Export Button */
.history-action-btn.pdf-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Error Notification Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* ============================================ */
/* Wallet Section */
/* ============================================ */

.wallet-section {
  margin-bottom: 30px;
}

.wallet-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.wallet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.wallet-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

.wallet-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wallet-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wallet-card.add-money-card {
  cursor: pointer;
  border: 1px dashed rgba(250, 204, 21, 0.5);
}

.wallet-card.add-money-card:hover {
  background: rgba(250, 204, 21, 0.1);
  border-color: var(--primary-color);
}

.wallet-card.add-money-card .wallet-value {
  font-size: 1rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .wallet-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* Modal Styles */
/* ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: var(--bg-modal);
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
  border: 1px solid var(--border-color);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 25px 15px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.modal-subtitle {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-hint {
  font-weight: 400;
  color: #888;
  font-size: 0.85rem;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-input);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-input) !important;
  background-color: var(--bg-input) !important;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #888;
}

.form-note i {
  color: var(--primary-color);
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* Payment Details Box */
.payment-details-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.payment-details-content {
  display: flex;
  flex-direction: column;
}

.payment-details-label {
  font-size: 0.8rem;
  color: #888;
}

.payment-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.copy-link-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.copy-link-btn:hover {
  text-decoration: underline;
}

/* Drop Zone */
.drop-zone {
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-input);
}

.drop-zone:hover {
  border-color: var(--primary-color);
  background: rgba(250, 204, 21, 0.1);
}

.drop-zone.dragover {
  border-color: var(--primary-color);
  background: rgba(250, 204, 21, 0.15);
}

.drop-zone i {
  font-size: 2.5rem;
  color: #666;
  margin-bottom: 10px;
}

.drop-zone p {
  margin: 0 0 5px;
  color: #aaa;
}

.drop-zone small {
  color: #777;
}

.browse-link {
  color: var(--primary-color);
  cursor: pointer;
}

/* Preview Container */
.preview-container {
  position: relative;
  margin-top: 15px;
}

.preview-container img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #444;
}

.remove-preview-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* Modal Buttons */
.modal-footer .btn {
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-footer .btn-outline {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.modal-footer .btn-outline:hover {
  background: var(--bg-primary);
}

.modal-footer .btn-primary {
  background: var(--primary-color);
  border: none;
  color: #000;
  font-weight: 600;
}

.modal-footer .btn-primary:hover {
  background: #e5b800;
}
