/* =========================================================
   uPostPlus Auth & Dashboard Styles - Add to styles.css
   ========================================================= */

/* ========== Auth Modal ========== */
.auth-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.auth-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.auth-modal {
  background: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-gray);
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.auth-modal-close:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.auth-modal-header {
  padding: 40px 40px 0;
  text-align: center;
}

.auth-modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.auth-modal-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

.auth-modal-body {
  padding: 32px 40px 40px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border-color);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.auth-tab.active {
  color: var(--accent-teal);
  border-bottom-color: var(--accent-teal);
}

.auth-tab:hover {
  color: var(--primary-dark);
}

.auth-form-panel {
  display: none;
}

.auth-form-panel.active {
  display: block;
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-form .form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  display: block;
}

.auth-form .form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-light);
}

.auth-form .form-group input:focus {
  outline: none;
  border-color: var(--accent-teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,168,150,0.1);
}

.auth-form .btn {
  width: 100%;
  margin-top: 8px;
}

.auth-alt-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.auth-alt-link a {
  color: var(--accent-teal);
  font-weight: 600;
  cursor: pointer;
}

.auth-alt-link a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.auth-divider span {
  padding: 0 16px;
}

/* ========== User Account Dropdown (Nav) ========== */
.nav-user {
  position: relative;
}

.nav-user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-user-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.nav-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 1001;
}

.nav-user-dropdown.active {
  display: block;
}

.nav-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-user-dropdown a:hover {
  background: var(--bg-light);
  color: var(--accent-teal);
  padding-left: 20px;
}

.nav-user-dropdown a i {
  width: 20px;
  text-align: center;
  color: var(--text-gray);
}

.nav-user-dropdown hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 8px 0;
}

.nav-user-dropdown .logout-btn {
  color: #dc3545;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-user-dropdown .logout-btn:hover {
  color: #a71d2a;
}

/* ========== Cart Icon (Nav) ========== */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-cart:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cart i {
  font-size: 1.1rem;
}

.cart-count {
  position: absolute;
  top: -2px; right: 4px;
  background: var(--accent-teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Customer Dashboard ========== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
}

.dashboard-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border-color);
  padding: 32px 0;
  position: fixed;
  left: 0; top: 72px; bottom: 0;
  width: 260px;
  overflow-y: auto;
}

.dashboard-sidebar-brand {
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.dashboard-sidebar-brand .logo {
  font-size: 1.2rem;
}

.dashboard-sidebar-brand .logo-icon {
  width: 32px; height: 32px;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(0,168,150,0.06);
  color: var(--accent-teal);
  border-left-color: var(--accent-teal);
}

.dashboard-nav a i {
  width: 20px;
  text-align: center;
  color: var(--text-gray);
}

.dashboard-nav a:hover i,
.dashboard-nav a.active i {
  color: var(--accent-teal);
}

.dashboard-nav hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 12px 24px;
}

.dashboard-main {
  margin-left: 260px;
  padding: 40px 32px;
  background: var(--bg-light);
  min-height: calc(100vh - 72px);
}

.dashboard-header {
  margin-bottom: 32px;
}

.dashboard-header h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.dashboard-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Dashboard Stats Cards */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.stat-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.stat-card-icon.blue { background: rgba(0,168,150,0.1); color: var(--accent-teal); }
.stat-card-icon.green { background: rgba(0,200,83,0.1); color: var(--accent-green); }
.stat-card-icon.orange { background: rgba(255,152,0,0.1); color: #ff9800; }
.stat-card-icon.purple { background: rgba(156,39,176,0.1); color: #9c27b0; }

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Dashboard Content Cards */
.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-card-header h3 {
  font-size: 1.1rem;
  margin: 0;
}

/* Service Table (Dashboard) */
.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.9rem;
}

.service-table th {
  font-weight: 600;
  color: var(--text-gray);
  border-bottom: 2px solid var(--border-color);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.service-table td {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  vertical-align: middle;
}

.service-table tr:hover td {
  background: rgba(0,168,150,0.02);
}

.service-table .service-name {
  font-weight: 600;
  color: var(--primary-dark);
}

.service-table .service-price {
  font-weight: 700;
  color: var(--accent-teal);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active { background: rgba(0,200,83,0.12); color: var(--accent-green); }
.status-pending { background: rgba(255,152,0,0.12); color: #e65100; }
.status-expired { background: rgba(220,53,69,0.12); color: #dc3545; }
.status-renewal { background: rgba(0,168,150,0.12); color: var(--accent-teal); }

/* Action Buttons in Table */
.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-renew {
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-renew:hover {
  background: var(--accent-teal-hover);
  transform: translateY(-1px);
}

.btn-pay {
  background: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-pay:hover {
  background: #00a040;
  transform: translateY(-1px);
}

/* ========== Shop / Store Page ========== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent-teal);
}

.shop-card-header {
  padding: 24px 24px 0;
}

.shop-card-header .category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-teal);
  background: rgba(0,168,150,0.08);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.shop-card-header h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.shop-card-header p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

.shop-card-price {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.shop-card-price .price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray);
}

.shop-card-price .btn-add {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.shop-card-price .btn-add:hover {
  background: var(--accent-teal-hover);
  transform: scale(1.1);
}

/* Shop Filters */
.shop-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-teal);
  color: var(--white);
  border-color: var(--accent-teal);
}

/* ========== Cart Sidebar ========== */
.cart-sidebar-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.cart-sidebar-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.cart-sidebar-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-gray);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--accent-teal);
  font-size: 0.95rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: #dc3545;
}

.cart-empty {
  text-align: center;
  padding: 40px 24px;
  color: var(--text-gray);
}

.cart-empty i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 16px;
}

.cart-sidebar-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.cart-sidebar-footer .btn {
  width: 100%;
}

/* ========== Checkout Page ========== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.checkout-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--accent-teal);
}

.payment-method.selected {
  border-color: var(--accent-teal);
  background: rgba(0,168,150,0.04);
}

.payment-method i {
  font-size: 1.3rem;
  color: var(--text-gray);
}

.payment-method.selected i {
  color: var(--accent-teal);
}

.order-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  color: var(--text-dark);
}

.order-item-price {
  font-weight: 600;
  color: var(--primary-dark);
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ========== Responsive Dashboard ========== */
@media (max-width: 992px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  
  .dashboard-sidebar {
    position: fixed;
    left: -260px;
    top: 72px; bottom: 0;
    z-index: 900;
    transition: left 0.3s ease;
  }
  
  .dashboard-sidebar.open {
    left: 0;
  }
  
  .dashboard-main {
    margin-left: 0;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .service-table {
    display: block;
    overflow-x: auto;
  }
  
  .auth-modal {
    max-width: 95%;
    margin: 16px;
  }
  
  .auth-modal-header,
  .auth-modal-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ========== Auth Pages (standalone) ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a4e 100%);
  padding: 24px;
}

.auth-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.auth-page-card .logo {
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.auth-page-card h2 {
  text-align: center;
  margin-bottom: 8px;
}

.auth-page-card .subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* ========== Toast Notifications ========== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-teal);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 4s forwards;
}

.toast.success { border-left-color: var(--accent-green); }
.toast.error { border-left-color: #dc3545; }
.toast.warning { border-left-color: #ff9800; }

.toast i {
  font-size: 1.2rem;
}

.toast.success i { color: var(--accent-green); }
.toast.error i { color: #dc3545; }
.toast.warning i { color: #ff9800; }

.toast-message {
  font-size: 0.95rem;
  color: var(--text-dark);
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
}

.toast-action {
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.toast-action:hover {
  background: var(--accent-teal-hover);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(100%); }
}

/* Toggle Switch for Auto-Renewal */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--border-color);
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-teal);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* Dashboard Card Alert Border */
.dashboard-card.alert {
  border-left: 4px solid #ff9800;
}

/* Quick Action Buttons */
.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.quick-action-btn:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quick-action-btn i {
  color: var(--accent-teal);
}

