/**
 * Manage Accounts Modal Styles
 * Using consistent styling with Account and Preferences modals
 */

/* Main Modal Container - Enhanced Modern Design */
#manageAccountsModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  z-index: 2000;
  overflow-y: auto;
  animation: backdropFadeIn 0.4s ease;
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

#manageAccountsModal.show {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

/* Modal Dialog - Enhanced with better proportions */
#manageAccountsModal .modal-dialog {
  width: 92%;
  max-width: 1300px;
  margin-top: 20px;
}

#manageAccountsModal .modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  animation: slideInEnhanced 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInEnhanced {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header - Enhanced with gradient background */
#manageAccountsModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
}

#manageAccountsModal .modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
  border-radius: 16px 16px 0 0;
}

#manageAccountsModal .modal-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #1e293b;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#manageAccountsModal .modal-title i {
  font-size: 1.5rem;
  color: #3b82f6;
  text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

#manageAccountsModal .modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(92vh - 160px);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* Close Button - Enhanced with hover effects */
#manageAccountsModal .btn-close {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#manageAccountsModal .btn-close:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-color: rgba(239, 68, 68, 0.5);
  transform: scale(1.05) rotate(90deg);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

#manageAccountsModal .btn-close::before {
  content: '×';
  font-weight: bold;
  line-height: 1;
}

/* Bulk Action Confirmation Modal */
#bulkActionModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 2100;
  overflow-y: auto;
}

#bulkActionModal.show {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

#bulkActionModal .modal-dialog {
  width: 90%;
  max-width: 500px;
  margin-top: 20px;
}

#bulkActionModal .modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 100%;
  animation: slideIn 0.3s ease;
}

#bulkActionModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px 12px 0 0;
}

#bulkActionModal .modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

#bulkActionModal .btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

#bulkActionModal .btn-close:hover {
  opacity: 1;
  background: #f3f4f6;
}

#bulkActionModal .btn-close::before {
  content: '×';
  font-weight: bold;
  line-height: 1;
}

/* Badge Styling */
#manageAccountsModal .badge {
  font-size: 0.75rem;
  padding: 0.25em 0.6em;
  border-radius: 6px;
  font-weight: 500;
}

#manageAccountsModal .badge.badge-warning {
  background-color: #f59e0b;
  color: white;
}

/* Search and Filter Controls - Enhanced with glass effect */
.accounts-controls {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.accounts-controls .input-group-text {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-right: none;
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
  border-radius: 10px 0 0 10px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.accounts-controls .form-control {
  border-left: none;
  border-color: rgba(59, 130, 246, 0.3);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.accounts-controls .form-control:focus {
  border-color: #3b82f6;
  box-shadow: 
    0 0 0 3px rgba(59, 130, 246, 0.15),
    0 4px 12px rgba(59, 130, 246, 0.1);
  background: rgba(255, 255, 255, 1);
}

.accounts-controls .form-select {
  border-color: rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-weight: 500;
}

.accounts-controls .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 
    0 0 0 3px rgba(59, 130, 246, 0.15),
    0 4px 12px rgba(59, 130, 246, 0.1);
  background: rgba(255, 255, 255, 1);
}

/* Bulk Actions - Enhanced with glass morphism */
.bulk-actions {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bulk-actions .alert {
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #1e40af;
  font-weight: 600;
  font-size: 1rem;
}

.bulk-action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.bulk-action-buttons .btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bulk-action-buttons .btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Loading States */
#accounts-loading {
  background: #f9fafb;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

/* Table Styling - Enhanced with modern glass effect */
#accounts-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: tableSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tableSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#accounts-table thead th {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  border: none;
  font-weight: 700;
  padding: 1.25rem 1rem;
  vertical-align: middle;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}

#accounts-table thead th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

#accounts-table tbody tr {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#accounts-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#accounts-table tbody tr.table-warning {
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
}

#accounts-table tbody tr.table-warning:hover {
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
}

#accounts-table tbody td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  vertical-align: middle;
}

/* User Info Cell */
.user-info {
  line-height: 1.4;
}

.user-info .fw-bold {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 600;
}

.user-info .small {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.3;
}

/* Status Badges - Enhanced with gradients and shadows */
#accounts-table .badge {
  font-size: 0.75rem;
  padding: 0.5em 0.9em;
  border-radius: 10px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#accounts-table .badge.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white;
  border-color: rgba(16, 185, 129, 0.3);
}

#accounts-table .badge.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white;
  border-color: rgba(239, 68, 68, 0.3);
}

#accounts-table .badge.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white;
  border-color: rgba(245, 158, 11, 0.3);
}

#accounts-table .badge.bg-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: white;
  border-color: rgba(59, 130, 246, 0.3);
}

#accounts-table .badge.bg-info {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
  color: white;
  border-color: rgba(6, 182, 212, 0.3);
}

#accounts-table .badge.bg-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
  color: white;
  border-color: rgba(107, 114, 128, 0.3);
}

/* Action Buttons - Enhanced with modern styling */
.btn-group-sm .btn {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-group-sm .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-group-sm .btn:hover::before {
  left: 100%;
}

.btn-outline-primary {
  color: #3b82f6;
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #2563eb;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline-info {
  color: #06b6d4;
  border-color: #06b6d4;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.btn-outline-info:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-color: #0891b2;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

/* No Results */
#no-accounts-found {
  background: #f9fafb;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
}

#no-accounts-found .fa-search {
  color: #9ca3af;
  margin-bottom: 1rem;
}

#no-accounts-found h5 {
  color: #374151;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Success/Error Alerts */
.alert-success {
  background-color: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
  border-radius: 8px;
}

.alert-danger {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
  border-radius: 8px;
}

.alert .fas {
  margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #manageAccountsModal .modal-dialog {
    width: 95%;
    margin-top: 10px;
  }
  
  .accounts-controls {
    padding: 1rem;
  }
  
  .accounts-controls .row {
    gap: 0.75rem;
  }
  
  .bulk-action-buttons {
    justify-content: center;
  }
  
  #accounts-table {
    font-size: 0.85rem;
  }
  
  #accounts-table thead th,
  #accounts-table tbody td {
    padding: 0.75rem 0.5rem;
  }
  
  .user-info {
    min-width: 150px;
  }
}

/* Checkbox Styling */
input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #3b82f6;
}

/* Modal Header */
#manageAccountsModal .modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

#manageAccountsModal .badge {
  font-size: 0.7rem;
}

/* Search and Filter Controls */
.accounts-controls {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.accounts-controls .input-group-text {
  background: white;
  border-right: none;
  color: #6c757d;
}

.accounts-controls .form-control {
  border-left: none;
}

.accounts-controls .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Bulk Actions */
.bulk-actions {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #2196f3;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.bulk-actions .alert {
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #1976d2;
}

.bulk-action-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bulk-action-buttons .btn-sm {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}

/* Loading States */
#accounts-loading {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

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

/* Accounts Table */
#accounts-table {
  margin: 0;
}

#accounts-table thead th {
  background: #343a40;
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.75rem;
  vertical-align: middle;
}

#accounts-table tbody tr:hover {
  background-color: #f8f9fa;
}

#accounts-table tbody tr.table-warning {
  background-color: #fff3cd !important;
}

#accounts-table tbody tr.table-warning:hover {
  background-color: #ffecb5 !important;
}

/* User Info Cell */
.user-info {
  line-height: 1.3;
}

.user-info .fw-bold {
  font-size: 0.95rem;
  color: #212529;
}

.user-info .small {
  font-size: 0.8rem;
  line-height: 1.2;
}

/* Status and Plan Badges */
.badge {
  font-size: 0.8rem;
  padding: 0.35em 0.65em;
}

.badge.bg-success {
  background-color: #198754 !important;
}

.badge.bg-danger {
  background-color: #dc3545 !important;
}

.badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
}

.badge.bg-primary {
  background-color: #0d6efd !important;
}

.badge.bg-info {
  background-color: #0dcaf0 !important;
  color: #000 !important;
}

.badge.bg-secondary {
  background-color: #6c757d !important;
}

/* Action Buttons */
.btn-group-sm .btn {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-info:hover {
  background-color: #0dcaf0;
  border-color: #0dcaf0;
  color: #000;
}

/* Pagination */
.pagination {
  margin: 1rem 0 0 0;
}

.pagination .page-link {
  color: #0d6efd;
  border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
}

/* No Results */
#no-accounts-found {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

#no-accounts-found .fa-search {
  color: #6c757d;
  margin-bottom: 1rem;
}

#no-accounts-found h5 {
  color: #495057;
  margin-bottom: 0.5rem;
}

#no-accounts-found .text-muted {
  color: #6c757d !important;
}

/* Bulk Action Confirmation Modal */
#bulkActionModal .alert-warning {
  background-color: #fff3cd;
  border-color: #ffecb5;
  color: #664d03;
}

#bulkActionModal .alert-warning .fas {
  color: #f0ad4e;
  margin-right: 0.5rem;
}

#bulk-action-list {
  max-height: 200px;
  overflow-y: auto;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.5rem;
}

#bulk-action-list li {
  padding: 0.25rem 0;
  border-bottom: 1px solid #e9ecef;
}

#bulk-action-list li:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .accounts-controls .row {
    gap: 0.5rem;
  }
  
  .accounts-controls .col-md-3,
  .accounts-controls .col-md-6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .bulk-action-buttons {
    justify-content: center;
  }
  
  #accounts-table {
    font-size: 0.85rem;
  }
  
  .user-info {
    min-width: 150px;
  }
  
  .btn-group-sm .btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 576px) {
  #manageAccountsModal .modal-dialog {
    margin: 0.5rem;
  }
  
  .accounts-controls {
    padding: 0.75rem;
  }
  
  .bulk-action-buttons .btn {
    flex: 1;
    text-align: center;
  }
  
  #accounts-table thead th,
  #accounts-table tbody td {
    padding: 0.5rem;
  }
  
  .user-info .fw-bold {
    font-size: 0.9rem;
  }
  
  .user-info .small {
    font-size: 0.75rem;
  }
}

/* Success/Error Alerts */
.alert-success {
  background-color: #d1edff;
  border-color: #b6d7ff;
  color: #0c5460;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert .fas {
  margin-right: 0.5rem;
}

/* Admin Only Styling */
.admin-only {
  position: relative;
}

/* Removed the rainbow gradient animation - cleaner look */
.admin-only::before {
  display: none;
}

/* Checkbox Styling */
input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #0d6efd;
}

/* Table hover effects */
#accounts-table tbody tr {
  transition: background-color 0.15s ease-in-out;
}

/* Button hover animations */
.btn {
  transition: all 0.15s ease-in-out;
}

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

/* Search input focus effect */
#account-search:focus {
  transform: scale(1.02);
  transition: transform 0.15s ease-in-out;
}

/* Loading spinner for better UX */
.btn .loading-spinner {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
  margin-right: 0.5rem;
}
