/* ========================================
 * GLOBAL STYLES
 * ========================================
 * Global CSS reset and base styles for the entire application
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * ======================================== */

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

#root {
  width: 100%;
  margin: 0;
  padding: 0;
}
/* ========================================
 * ERROR BOUNDARY STYLES
 * ========================================
 * Styling for error boundary fallback UI
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * ======================================== */

/* ===== ERROR BOUNDARY CONTAINER ===== */
/* Full viewport overlay above module chrome (operations header uses z-index 10000) */
.error-boundary {
  position: fixed;
  inset: 0;
  z-index: 2147483020;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 20px 24px;
  box-sizing: border-box;
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
}

.error-boundary-content {
  text-align: center;
  width: 100%;
  max-width: min(960px, 96vw);
  max-height: min(92vh, 900px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  border: 1px solid #e2e8f0;
}

/* ===== ERROR ICON ===== */
.error-boundary-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* ===== ERROR TITLE ===== */
.error-boundary-title {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  font-family: 'Roboto', sans-serif;
}

/* ===== ERROR MESSAGE ===== */
.error-boundary-message {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 30px 0;
  font-family: 'Roboto', sans-serif;
}

/* ===== ERROR ACTIONS ===== */
.error-boundary-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-boundary-retry-btn,
.error-boundary-refresh-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.error-boundary-retry-btn {
  background: #5c737d;
  color: white;
}

.error-boundary-retry-btn:hover {
  background: #4a5d66;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 115, 125, 0.3);
}

.error-boundary-refresh-btn {
  background: #e9ecef;
  color: #495057;
  border: 1px solid #dee2e6;
}

.error-boundary-refresh-btn:hover {
  background: #dee2e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== ERROR DETAILS (DEVELOPMENT) ===== */
.error-boundary-details {
  margin-top: 24px;
  text-align: left;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  min-height: 0;
}

.error-boundary-details-summary {
  cursor: pointer;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
  list-style: none;
}

.error-boundary-details-summary::-webkit-details-marker {
  display: none;
}

.error-boundary-details-body {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.error-boundary-details-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.error-boundary-copy-btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #5c737d;
  background: #5c737d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.error-boundary-copy-btn:hover {
  background: #4a5d66;
  border-color: #4a5d66;
}

.error-boundary-stack {
  min-height: 120px;
  max-height: min(52vh, 560px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #1e293b;
  color: #e2e8f0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  border: 1px solid #334155;
  margin: 0;
}

/* ===== TABLET VIEW STYLES (768px and below) ===== */
@media (max-width: 768px) {
  .error-boundary {
    padding: 12px 14px 20px;
  }

  .error-boundary-content {
    padding: 24px 20px;
    max-height: 94vh;
  }

  .error-boundary-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .error-boundary-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .error-boundary-message {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .error-boundary-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-boundary-retry-btn,
  .error-boundary-refresh-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* ===== MOBILE VIEW STYLES (480px and below) ===== */
@media (max-width: 480px) {
  .error-boundary {
    padding: 10px 12px 16px;
  }

  .error-boundary-content {
    padding: 20px 16px;
    max-height: 95vh;
  }

  .error-boundary-stack {
    max-height: min(48vh, 340px);
    font-size: 11px;
  }

  .error-boundary-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .error-boundary-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .error-boundary-message {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .error-boundary-retry-btn,
  .error-boundary-refresh-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/* ========================================
 * LOADING SPINNER STYLES
 * ========================================
 * Styling for loading spinner component
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * ======================================== */

/* ===== LOADING SPINNER CONTAINER ===== */
.loading-spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.loading-spinner-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.loading-spinner-circle {
  border-radius: 50%;
  animation: loading-spinner-bounce 1.4s ease-in-out infinite both;
}

/* ===== SIZE VARIANTS ===== */
.loading-spinner-small .loading-spinner-circle {
  width: 6px;
  height: 6px;
}

.loading-spinner-medium .loading-spinner-circle {
  width: 8px;
  height: 8px;
}

.loading-spinner-large .loading-spinner-circle {
  width: 12px;
  height: 12px;
}

/* ===== COLOR VARIANTS ===== */
.loading-spinner-primary .loading-spinner-circle {
  background-color: #5c737d;
}

.loading-spinner-secondary .loading-spinner-circle {
  background-color: #6c757d;
}

.loading-spinner-white .loading-spinner-circle {
  background-color: #ffffff;
}

/* ===== ANIMATION DELAYS ===== */
.loading-spinner-circle:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-spinner-circle:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-spinner-circle:nth-child(3) {
  animation-delay: 0s;
}

/* ===== LOADING TEXT ===== */
.loading-spinner-text {
  margin-top: 16px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.loading-spinner-fullscreen .loading-spinner-text {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes loading-spinner-bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== TABLET VIEW STYLES (768px and below) ===== */
@media (max-width: 768px) {
  .loading-spinner-container {
    padding: 16px;
  }

  .loading-spinner-text {
    font-size: 13px;
    margin-top: 12px;
  }

  .loading-spinner-fullscreen .loading-spinner-text {
    font-size: 15px;
  }
}

/* ===== MOBILE VIEW STYLES (480px and below) ===== */
@media (max-width: 480px) {
  .loading-spinner-container {
    padding: 12px;
  }

  .loading-spinner-text {
    font-size: 12px;
    margin-top: 10px;
  }

  .loading-spinner-fullscreen .loading-spinner-text {
    font-size: 14px;
  }
}
/* NOTIFICATION TOAST STYLES */

/* ===== TOAST CONTAINER ===== */
.notification-toast-container {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  pointer-events: none;
}

/* ===== INDIVIDUAL TOAST ===== */
.notification-toast {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  background: #1a2233; /* Unified Dark Background */
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  width: 420px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
  backdrop-filter: blur(12px);
  color: #f1f5f9;
}

.notification-toast:hover {
  background: #242c3d;
  transform: translateY(-2px);
}

.notification-toast.toast-exit {
  animation: toastSlideOut 0.2s ease forwards;
}

/* Body Layout */
.toast-body {
  padding: 18px 20px 18px 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Left Column: Icon + Category Name Below */
.toast-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 65px;
  flex-shrink: 0;
}

.toast-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24; /* Amber icon color */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.toast-category-name {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 8px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* Main Column: ActionBadge, Time, Message */
.toast-main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.toast-action-badge {
  font-size: 10.5px;
  font-weight: 900;
  color: #fff;
  padding: 2.5px 12px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toast-time-meta {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  opacity: 0.8;
}

.toast-message-text {
  font-size: 15px;
  line-height: 1.45;
  color: #e2e8f0;
  font-weight: 500;
  letter-spacing: -0.1px;
}

/* Animations */
@keyframes toastSlideIn {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes toastSlideOut {
  0% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.96); }
}

/* ===== TOAST PROGRESS (THICKER & MORE VISIBLE) ===== */
.notification-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px; /* Thicker line */
  background: rgba(255, 255, 255, 0.04);
}

.notification-toast-progress-bar {
  height: 100%;
  animation: toastProgress linear forwards;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Distinctive visible colors for the progress bar */
.notification-toast-progress-bar { background: #3b82f6; } /* Default Blue */
.notification-toast-progress-bar.toast-priority-high { background: #f87171; } /* Bright Red */
.notification-toast-progress-bar.toast-priority-medium { background: #fbbf24; } /* Bright Amber */
.notification-toast-progress-bar.toast-priority-low { background: #4ade80; } /* Bright Green */

@keyframes toastProgress {
  0% { width: 100%; }
  100% { width: 0%; }
}
/* ========================================
 * HOMEPAGE HEADER FAQ STYLES
 * ======================================== */

.homepage-faq-button {
  background: none;
  border: 1px solid rgba(43, 143, 175, 0.4);
  color: #2b8faf;
  padding: 6px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-faq-button:hover {
  background-color: #2b8faf;
  color: white;
  border-color: #2b8faf;
}

/* ===== FAQ OVERLAY ===== */
.homepage-faq-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-end; /* Align to right */
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
  animation: fadeInFAQ 0.3s ease-out;
}

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

/* ===== FAQ CONTENT CONTAINER (Panel sliding from right) ===== */
.homepage-faq-content {
  width: min(900px, 60vw);
  min-width: 600px;
  max-width: 1100px;
  height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  animation: slideInFromRightFAQ 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@keyframes slideInFromRightFAQ {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ===== FAQ HEADER ===== */
.homepage-faq-header {
  height: 60px;
  background-color: #2b8faf;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  flex-shrink: 0;
  position: relative;
}

.homepage-faq-header-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.homepage-faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.homepage-faq-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: white;
}

.homepage-faq-close-btn {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-faq-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

/* ===== FAQ CONTROLS ===== */
.homepage-faq-controls {
  padding: 15px 25px;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.homepage-faq-search-section {
  flex: 1;
}

.homepage-faq-search-wrapper {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 15px;
  width: 250px;
  transition: all 0.2s ease;
}

.homepage-faq-search-wrapper:focus-within {
  border-color: #2b8faf;
  background: white;
  box-shadow: 0 0 0 3px rgba(43, 143, 175, 0.1);
}

.homepage-faq-search-input {
  width: 100%;
  border: none;
  font-size: 14px;
  outline: none;
  color: #333;
  background: transparent;
}

.homepage-faq-search-input::placeholder {
  color: #999;
}

.homepage-faq-filters {
  display: flex;
  gap: 10px;
  align-items: center;
}

.homepage-faq-filter-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 80px;
}

.homepage-faq-filter-btn:hover {
  background-color: #ffffff;
  border-color: rgba(43, 143, 175, 0.3);
  color: #2b8faf;
}

.homepage-faq-filter-btn.active {
  background-color: #2b8faf;
  color: white;
  border-color: #2b8faf;
  box-shadow: 0 4px 12px rgba(43, 143, 175, 0.2);
}

/* ===== FAQ BODY ===== */
.homepage-faq-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 25px;
  background-color: #fcfcfc;
}

.homepage-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.homepage-faq-item {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.homepage-faq-item:hover {
  border-color: rgba(43, 143, 175, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.homepage-faq-item.active {
  border-color: rgba(43, 143, 175, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.homepage-faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s;
}

.homepage-faq-question-text {
  font-weight: 500;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.homepage-faq-arrow {
  font-size: 12px;
  color: #bbb;
  transition: all 0.3s ease;
}

.homepage-faq-item.active .homepage-faq-arrow {
  color: #2b8faf;
  transform: rotate(180deg);
}

.homepage-faq-answer {
  padding: 0 24px 20px 24px;
  background-color: white;
  color: #666;
  animation: slideDownFade 0.3s ease-out;
}

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

.homepage-faq-answer p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.homepage-faq-no-results {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .homepage-faq-content {
    width: 100vw;
    min-width: 100vw;
  }
  
  .homepage-faq-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 20px;
  }
  
  .homepage-faq-search-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .homepage-faq-filters {
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: flex-start;
  }

  .homepage-faq-filter-btn {
    flex: 0 0 auto;
  }
}

/* ========================================
 * HOMEPAGE HEADER STYLES
 * ========================================
 * Main homepage header component with navigation and branding
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * ======================================== */

/* ===== PAGE LEVEL SETTINGS ===== */
.homepage-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  min-height: 60px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 12px;
}

.homepage-header .header-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 120px;
}

.homepage-header .header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.homepage-header .header-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.homepage-header .header-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
}

.homepage-header .header-right-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 200px;
}

/* ===== ADMIN DROPDOWN STYLES ===== */
.homepage-header .admin-dropdown-container {
  position: relative;
}

.homepage-header .admin-dropdown-container a {
  text-decoration: none;
}

.homepage-header .admin-button {
  background-color: #5c737d;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.homepage-header .admin-button:hover {
  background-color: #4a5d63;
}

/* Active state (when on admin pages) */
.homepage-header .admin-button.admin-active {
  background-color: #4a5d63;
  border: 3px solid #2b8faf;
}

/* Logged-in state */
.homepage-header .admin-button.admin-logged-in {
  background-color: #10b981;
  padding: 6px 14px;
}

.homepage-header .admin-button.admin-logged-in:hover {
  background-color: #059669;
}

.homepage-header .admin-avatar {
  font-size: 16px;
  line-height: 1;
}

.homepage-header .admin-username {
  font-size: 14px;
  font-weight: 500;
}

.homepage-header .admin-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
}

.homepage-header .admin-dropdown-menu {
  padding: 8px 0;
}

.homepage-header .admin-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
}

.homepage-header .admin-dropdown-item:hover {
  background-color: #f3f4f6;
}

.homepage-header .admin-logout-btn {
  border-top: 1px solid #e5e7eb;
}

/* ========================================
 * 2. LOGO & BRANDING STYLES
 * ======================================== */

/* ========================================
 * 3. NAVIGATION ELEMENTS
 * ======================================== */

/* ========================================
 * 4. RESPONSIVE DESIGN
 * ======================================== */
/* 
 * BREAKPOINT STANDARDIZATION:
 * Both homepage-body.css and homepage-header.css MUST have the same breakpoints:
 * - 768px: Tablet/Mobile layout
 * - 480px: Small mobile adjustments  
 * - 360px: Extra small mobile optimizations
 */

/* ===== RESPONSIVE: TABLET (<= 768px) ===== */
@media (max-width: 768px) {
  .homepage-header {
    padding: 0 10px;
    height: 50px;
    min-height: 50px;
  }
  
  .homepage-header .header-logo {
    min-width: 80px;
    flex: 0 0 auto;
  }
  
  .homepage-header .header-logo img {
    height: 45px;
  }
  
  .homepage-header .header-title {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 200px);
  }
  
  .homepage-header .header-right-panel {
    min-width: auto;
    gap: 8px;
    flex: 0 0 auto;
  }
  
  .homepage-header .admin-button {
    padding: 8px 14px;
    font-size: 14px;
    min-width: 75px;
  }
  
  .homepage-header .faq-button {
    padding: 8px 14px;
    font-size: 14px;
    min-width: 75px;
  }
  
  .dkg-login-faq-modal-content {
    width: 100%;
    height: 100vh;
  }
  
  .dkg-login-faq-modalheader-21 {
    padding: 16px 20px;
  }
  
  .dkg-login-faq-modalheader-21 h3 {
    font-size: 16px;
  }
  
  .dkg-login-faq-modalbody-21 {
    padding: 20px;
    flex: 1;
  }
  
  .dkg-screen-faq-accodion-suMM {
    padding: 16px 20px;
  }
  
  .faq-question {
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 20px;
    font-size: 13px;
  }
}

/* ===== RESPONSIVE: MOBILE (<= 480px) ===== */
@media (max-width: 480px) {
  .homepage-header {
    padding: 0 8px;
    height: 48px;
    min-height: 48px;
  }
  
  .homepage-header .header-logo {
    min-width: 70px;
    flex: 0 0 auto;
  }
  
  .homepage-header .header-logo img {
    height: 42px;
  }
  
  .homepage-header .header-title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 180px);
  }
  
  .homepage-header .header-right-panel {
    min-width: auto;
    gap: 6px;
    flex: 0 0 auto;
  }
  
  .homepage-header .admin-button {
    padding: 7px 12px;
    font-size: 13px;
    min-width: 70px;
  }
  
  .homepage-header .faq-button {
    padding: 7px 12px;
    font-size: 13px;
    min-width: 70px;
  }
}

/* ===== RESPONSIVE: SMALL MOBILE (<= 360px) ===== */
@media (max-width: 360px) {
  .homepage-header {
    padding: 0 6px;
    height: 46px;
    min-height: 46px;
  }
  
  .homepage-header .header-logo {
    min-width: 60px;
    flex: 0 0 auto;
  }
  
  .homepage-header .header-logo img {
    height: 40px;
  }
  
  .homepage-header .header-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 160px);
  }
  
  .homepage-header .header-right-panel {
    min-width: auto;
    gap: 6px;
    flex: 0 0 auto;
  }
  
  .homepage-header .admin-button {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 65px;
  }
  
  .homepage-header .faq-button {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 65px;
  }
} /* ========================================
 * HOMEPAGE BODY STYLES
 * ========================================
 * Main homepage body component with module cards and content
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * 
 * MODULE COLOR REFERENCE
 * ========================================
 * UPDATED: Now using solid colors for better visual appearance
 * 
 * 1. DK GLOBAL MANAGEMENT (Magenta)
 *    Card & Button: #9d265c
 *    Login File: src/modules/management/pages/1-Login/management-login.css
 * 
 * 2. DK GLOBAL OPERATIONS (Teal)
 *    Card & Button: #006666
 *    Login File: src/modules/operations/pages/1-Login/operations-login.css
 * 
 * 3. DK GLOBAL WORKFORCE (Purple)
 *    Card & Button: #667eea
 *    Login File: src/modules/workforce/pages/login/workforce-login.css
 * 
 * 4. DK GLOBAL WORKSPACE (Blue)
 *    Card & Button: #2b8faf
 *    Login File: src/modules/workspace/1-Login/pages/workspace-recruitment-login.css
 * 
 * 5. DK GLOBAL RECRUITERS (Dark Blue-Gray)
 *    Card & Button: #2c3e50
 *    Login File: src/modules/suppliers/pages/login/suppliers-login.css
 * 
 * 6. DK GLOBAL PARTNERS (Dark Blue)
 *    Card & Button: #00506e
 *    Login File: src/modules/partners/pages/login/partners-login.css
 * 
 * 7. DK GLOBAL JOBS (Dark Purple-Gray)
 *    Card & Button: #4d4262
 *    Login File: src/modules/employers/pages/login/employers-login.css
 * 
 * 8. DK GLOBAL WEBSITE (Dark Gray)
 *    Card & Button: #3b4a51
 *    Login File: src/modules/jobseekers/pages/login/jobseekers-login.css
 * 
 * 🔴  UPDATED RULES:
 * - HOMEPAGE CARDS: Now use solid colors for better visual appearance
 * - LOGIN PAGES: Still use gradients (login pages unchanged)
 * - OTHER FILES (navbar, headers, etc.): Use solid colors only
 * - Homepage cards now have cleaner, more professional solid color appearance
 * ========================================
 * 
 * Contents:
 * 1. Main Container Layout
 * 2. Card Grid System
 * 3. Individual Card Styles
 * 4. Card Hover & Focus States
 * 5. Card Content Elements
 * 6. Module-Specific Color Classes
 * 7. Mobile Responsive Styles
 * 8. Accessibility & Interactions
 * ========================================
 */

/* ========================================
 * 1. MAIN CONTAINER LAYOUT
 * ======================================== */
.homepage-body-container {
  margin: 0;
  padding: 1rem 2rem 2rem 2rem;
  margin-top: 55px;
  min-height: calc(100vh - 55px);
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-body-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
}

/* ========================================
 * 2. CARD GRID SYSTEM
 * ======================================== */
.dkg-crm-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
  box-sizing: border-box;
}

/* ========================================
 * 3. INDIVIDUAL CARD STYLES
 * ======================================== */
.dkg-crm-main-card {
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  height: 250px;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

/* ========================================
 * 4. CARD HOVER & FOCUS STATES
 * ======================================== */
.dkg-crm-main-card:hover,
.dkg-crm-main-card:focus {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 1px;
}

.dkg-crm-main-card:active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}

/* ========================================
 * 5. CARD CONTENT ELEMENTS
 * ======================================== */
.dkg-usertype-image-crop {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.dkg-crm-main-card:hover .dkg-usertype-image-crop {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.dkg-usertype-image {
  height: 60px;
  width: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.dkg-acc-type-tabcon {
  margin-top: 0;
  width: 100%;
}

.dkg-acc-type-tabname {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 12px 25px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 1;
}

.dkg-crm-main-card:hover .dkg-acc-type-tabname {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.85);
}

.dkg-crm-main-card:active .dkg-acc-type-tabname {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dkg-acc-type-tabname:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
  z-index: -1;
}

.dkg-crm-main-card:hover .dkg-acc-type-tabname:before {
  left: 100%;
}

/* Mobile View */
.homepage-body-mobile-content {
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
}

.dkg-crm-mo-card-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  overflow: hidden;
}

.dkg-crm-mo-card-row {
  display: flex;
  gap: 12px;
  width: 100%;
  flex: 1;
}

.dkg-crm-main-mo-card {
  width: 100%;
  height: 100%;
  min-height: 80px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  padding: 15px 12px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.dkg-crm-main-mo-card:hover,
.dkg-crm-main-mo-card:focus {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 1px;
}

.dkg-crm-main-mo-card:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}

.dkg-crm-main-mo-card .dkg-usertype-image-crop {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dkg-crm-main-mo-card .dkg-usertype-image {
  height: 30px;
  width: 30px;
}

.dkg-crm-main-mo-card .dkg-acc-type-tabname {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  background-color: transparent;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
  box-shadow: none;
  text-shadow: none;
}

.dkg-mo-box-btmtitle {
  display: block;
  font-size: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/* ========================================
 * 6. MODULE-SPECIFIC COLOR CLASSES
 * ======================================== */

/* Desktop card colors - solid colors */
.dkg-crm-main-card.dkg-management-bg {
  background: #9d265c;
}

.dkg-crm-main-card.dkg-operations-bg {
  background: #006666;
}

.dkg-crm-main-card.dkg-workforce-bg {
  background: #667eea;
}

.dkg-crm-main-card.dkg-workspace-recruitment-bg {
  background: #2b8faf;
}

.dkg-crm-main-card.dkg-suppliers-bg {
  background: #2c3e50;
}

.dkg-crm-main-card.dkg-employers-bg {
  background: #4d4262;
}

.dkg-crm-main-card.dkg-partners-bg {
  background: #00506e;
}

.dkg-crm-main-card.dkg-jobseekers-bg {
  background: #3b4a51;
}

/* Desktop button background colors matching card colors - solid colors */
.dkg-crm-main-card.dkg-management-bg .dkg-acc-type-tabname {
  background: #9d265c;
  color: white;
}

.dkg-crm-main-card.dkg-operations-bg .dkg-acc-type-tabname {
  background: #006666;
  color: white;
}

.dkg-crm-main-card.dkg-workspace-recruitment-bg .dkg-acc-type-tabname {
  background: #2b8faf;
  color: white;
}

.dkg-crm-main-card.dkg-workforce-bg .dkg-acc-type-tabname {
  background: #667eea;
  color: white;
}

.dkg-crm-main-card.dkg-suppliers-bg .dkg-acc-type-tabname {
  background: #2c3e50;
  color: white;
}

.dkg-crm-main-card.dkg-employers-bg .dkg-acc-type-tabname {
  background: #4d4262;
  color: white;
}

.dkg-crm-main-card.dkg-partners-bg .dkg-acc-type-tabname {
  background: #00506e;
  color: white;
}

.dkg-crm-main-card.dkg-jobseekers-bg .dkg-acc-type-tabname {
  background: #3b4a51;
  color: white;
}

/* ========================================
 * 7. MOBILE RESPONSIVE STYLES
 * ======================================== */

/* Tablet View - 768px and below */
@media (max-width: 768px) {
  .homepage-body-container {
    margin-top: 60px;
    height: 90vh;
    min-height: calc(90vh - 60px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .homepage-body-content {
    display: none;
  }

  .homepage-body-mobile-content {
    display: grid;
  }

  /* Mobile card colors - solid colors */
  .dkg-crm-main-mo-card.dkg-management-bg {
    background: #9d265c;
  }

  .dkg-crm-main-mo-card.dkg-operations-bg {
    background: #006666;
  }

  .dkg-crm-main-mo-card.dkg-workforce-bg {
    background: #667eea;
  }

  .dkg-crm-main-mo-card.dkg-workspace-recruitment-bg {
    background: #2b8faf;
  }

  .dkg-crm-main-mo-card.dkg-suppliers-bg {
    background: #2c3e50;
  }

  .dkg-crm-main-mo-card.dkg-employers-bg {
    background: #4d4262;
  }

  .dkg-crm-main-mo-card.dkg-partners-bg {
    background: #00506e;
  }

  .dkg-crm-main-mo-card.dkg-jobseekers-bg {
    background: #3b4a51;
  }

  /* Mobile button colors - solid colors */
  .dkg-crm-main-mo-card.dkg-management-bg .dkg-acc-type-tabname {
    background: #9d265c;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-operations-bg .dkg-acc-type-tabname {
    background: #006666;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-workforce-bg .dkg-acc-type-tabname {
    background: #667eea;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-workspace-recruitment-bg .dkg-acc-type-tabname {
    background: #2b8faf;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-suppliers-bg .dkg-acc-type-tabname {
    background: #2c3e50;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-employers-bg .dkg-acc-type-tabname {
    background: #4d4262;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-partners-bg .dkg-acc-type-tabname {
    background: #00506e;
    color: white;
  }

  .dkg-crm-main-mo-card.dkg-jobseekers-bg .dkg-acc-type-tabname {
    background: #3b4a51;
    color: white;
  }
}

/* Responsive Design */

@media (max-width: 768px) {
  .homepage-body-container {
    margin-top: 60px;
    height: 90vh;
    min-height: calc(90vh - 60px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .homepage-body-content {
    display: none;
  }

  .homepage-body-mobile-content {
    display: grid;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  /* Override desktop card container padding for mobile */
  .dkg-crm-card-container {
    padding: 0;
  }

  /* Apply flexbox layout for 768px (2 cards per row) */
  .dkg-crm-mo-card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
    height: 100%;
  }

  .dkg-crm-mo-card-row {
    display: flex;
    gap: 20px;
    width: 100%;
    flex: 1;
  }

  /* Ensure mobile cards fill viewport exactly */
  .dkg-crm-main-mo-card {
    height: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
  }

  /* Remove shadows from button titles in 768px */
  .dkg-crm-main-mo-card .dkg-acc-type-tabname {
    box-shadow: none;
    text-shadow: none;
    background-color: transparent;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0;
  }

  /* Specifically target WORKFORCE card to remove shadow */
  .dkg-crm-main-mo-card.dkg-client-bg .dkg-acc-type-tabname {
    box-shadow: none;
    text-shadow: none;
    background-color: #764ba2;
  }

  /* Ultra-specific shadow removal for all mobile cards */
  .dkg-crm-mo-card-container .dkg-crm-main-mo-card .dkg-acc-type-tabname {
    box-shadow: none;
    text-shadow: none;
    filter: none;
  }

  /* Remove all shadows from mobile cards completely */
  .dkg-crm-main-mo-card .dkg-acc-type-tabname,
  .dkg-crm-main-mo-card .dkg-acc-type-tabname * {
    box-shadow: none;
    text-shadow: none;
    filter: none;
  }

  /* Make icons bigger in 768px */
  .dkg-crm-main-mo-card .dkg-usertype-image-crop {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .dkg-crm-main-mo-card .dkg-usertype-image {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 480px) {
  .homepage-body-container {
    height: 90vh;
    min-height: calc(90vh - 60px);
  }

  .homepage-body-mobile-content {
    padding: 0;
  }

  .dkg-crm-mo-card-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    width: 100%;
    height: 100%;
  }

  .dkg-crm-mo-card-row {
    display: flex;
    gap: 18px;
    width: 100%;
    flex: 1;
  }

  .dkg-crm-main-mo-card {
    height: 100%;
    min-height: 50px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dkg-crm-main-mo-card .dkg-usertype-image-crop {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .dkg-crm-main-mo-card .dkg-usertype-image {
    height: 40px;
    width: 40px;
  }

  .dkg-crm-main-mo-card .dkg-acc-type-tabname {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
    text-shadow: none;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 360px) {
  .homepage-body-container {
    height: 90vh;
    min-height: calc(90vh - 60px);
  }

  .homepage-body-mobile-content {
    padding: 0;
  }

  .dkg-crm-mo-card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    width: 100%;
    height: 100%;
  }

  .dkg-crm-mo-card-row {
    display: flex;
    gap: 15px;
    width: 100%;
    flex: 1;
  }

  .dkg-crm-main-mo-card {
    height: 100%;
    min-height: 50px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dkg-crm-main-mo-card .dkg-usertype-image-crop {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .dkg-crm-main-mo-card .dkg-usertype-image {
    height: 35px;
    width: 35px;
  }

  .dkg-crm-main-mo-card .dkg-acc-type-tabname {
    padding: 3px 6px;
    font-size: 10px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
    text-shadow: none;
    letter-spacing: 0.3px;
  }
}
/* ========================================
 * RESET PASSWORD PAGE STYLES
 * ========================================
 * Styles for the reset password page
 * 
 * 📋 For file structure guidelines, refer to:
 *    docs/conventions/01-naming.md
 * ======================================== */

.reset-password-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reset-password-container {
  width: 100%;
  max-width: 450px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.reset-password-form-wrapper {
  padding: 40px;
}

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

.reset-password-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.reset-password-header h2 {
  color: #333;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.reset-password-email {
  color: #666;
  font-size: 14px;
  margin: 0;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
}

.reset-password-form {
  margin-bottom: 20px;
}

.reset-password-input-group {
  margin-bottom: 20px;
}

.reset-password-input-group label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.reset-password-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.reset-password-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.reset-password-submit {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.reset-password-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.reset-password-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.reset-password-error-message {
  background: #fee;
  color: #c33;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  border: 1px solid #fcc;
}

.reset-password-success-message {
  background: #efe;
  color: #363;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  border: 1px solid #cfc;
}

.reset-password-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
}

.reset-password-footer p {
  color: #666;
  margin: 0 0 10px 0;
  font-size: 14px;
}

.reset-password-link {
  background: none;
  border: none;
  color: #667eea;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.reset-password-link:hover {
  color: #5a67d8;
}

.reset-password-loading {
  text-align: center;
  padding: 60px 40px;
}

.reset-password-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

.reset-password-loading p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.reset-password-error {
  text-align: center;
  padding: 60px 40px;
}

.reset-password-error .reset-password-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.reset-password-error h2 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.reset-password-error p {
  color: #666;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.reset-password-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-password-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
  .reset-password-page {
    padding: 10px;
  }
  
  .reset-password-form-wrapper {
    padding: 30px 20px;
  }
  
  .reset-password-header h2 {
    font-size: 24px;
  }
  
  .reset-password-icon {
    font-size: 40px;
  }
}
