/* ============================================
   MAGNIFYHOPE OPTIMIZED UI V2 - No-Scroll Layout
   ============================================ */

/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Modern color palette and variables */
:root {
  /* Colors */
  --primary: #5E72E4;
  --primary-dark: #4C63D2;
  --primary-light: #8B9FE8;
  --success: #00D97E;
  --warning: #F5B800;
  --danger: #EC5252;
  --muted: #6E84A3;
  --border: rgba(0, 0, 0, 0.06);
  
  /* Backgrounds */
  --bg-base: #FFFFFF;
  --bg-surface: #F7F9FC;
  
  /* Text */
  --text-primary: #12263F;
  --text-secondary: #6E84A3;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base reset and typography */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-surface);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Utility classes */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-small { font-size: 0.85rem; }

/* Optimized Landing Page - No Scroll Layout */
.landing-optimized {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, #fff 100%);
}

.landing-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 40px 30px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo Container */
.logo-container {
  margin-bottom: 15px;
}

.logo-background {
  display: inline-block;
  background: var(--primary);
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(94, 114, 228, 0.3);
}

.logo {
  height: 70px;
  width: auto;
  display: block;
}

/* Tagline */
.tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 20px 0;
  font-weight: 500;
}

/* Main Action Buttons Container */
.main-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}

/* Action Group */
.action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 250px;
  padding: 15px;
  border: 2px solid rgba(94, 114, 228, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.action-group:hover {
  border-color: rgba(94, 114, 228, 0.3);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Larger, More Prominent Action Buttons */
.action-button {
  width: 200px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.button-icon {
  font-size: 1.5rem;
}

.button-text {
  font-size: 1.1rem;
}

/* Button Colors */
.action-volunteer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.action-volunteer:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.action-profile {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.action-profile:hover {
  background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.action-host {
  background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
  color: white;
}

.action-host:hover {
  background: linear-gradient(135deg, #e8690b 0%, #d63384 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
}

/* Action Description */
.action-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 8px 0 0 0;
  font-weight: 600;
  text-align: center;
}

/* Host Registration Section */
.host-registration {
  margin-top: 15px;
  padding-top: 15px;
}

.divider {
  width: 100px;
  height: 2px;
  background: #e3e8f0;
  margin: 0 auto 15px;
}

.host-title {
  color: #1f6feb;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.register-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.register-button:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.host-info {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Footer Links */
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
}

.links-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.footer-link {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.copyright {
  color: var(--muted);
  font-size: 0.7rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .action-button {
    width: 220px;
    height: 70px;
    font-size: 1rem;
  }

  .logo {
    height: 60px;
  }

  .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .landing-optimized {
    padding: 15px;
  }

  .landing-content {
    padding: 25px 20px;
  }

  .action-button {
    width: 200px;
    height: 60px;
    font-size: 0.95rem;
  }

  .logo {
    height: 50px;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .footer-link {
    font-size: 0.7rem;
  }
}

/* Height-constrained screens (laptops) */
@media (max-height: 800px) {
  .landing-optimized {
    padding: 5px;
  }

  .logo-container {
    margin-bottom: 10px;
  }

  .logo {
    height: 60px;
  }

  .tagline {
    margin-bottom: 15px;
  }

  .action-button {
    height: 50px;
  }

  .host-registration {
    margin-top: 10px;
    padding-top: 10px;
  }

  .footer-links {
    margin-top: 10px;
    padding-top: 8px;
  }
}

@media (max-height: 700px) {
  .logo {
    height: 50px;
  }

  .logo-background {
    padding: 10px 16px;
  }

  .action-button {
    height: 45px;
    width: 140px;
  }

  .button-icon {
    font-size: 1rem;
  }

  .button-text {
    font-size: 0.85rem;
  }

  .tagline {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .main-buttons {
    gap: 12px;
    margin-bottom: 15px;
  }

  .host-registration {
    margin-top: 8px;
    padding-top: 8px;
  }

  .footer-links {
    margin-top: 8px;
  }
}

/* ============================================
   OTHER EXISTING STYLES (Non-Landing)
   ============================================ */

/* App Container (for other modes) */
.app-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* General Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  background: var(--primary);
  color: white;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--bg-base);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--primary);
}

.back-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.back-btn:hover {
  background: #5a6268;
}

/* Forms */
fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

legend {
  padding: 0 10px;
  font-weight: 600;
  color: var(--primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.1);
}

.required-label::after {
  content: " *";
  color: var(--danger);
}

.error-message {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  min-height: 18px;
}

/* Stat Cards */
.stat-card {
  background: var(--bg-base);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-button {
  padding: 12px 24px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

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

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Cards */
.card {
  background: var(--bg-base);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-body {
  padding: 20px;
}

/* Mode Indicator */
.mode-indicator {
  background: linear-gradient(135deg, #667eea10, #764ba210);
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Status Bar */
.status {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__panel {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.modal__body {
  padding: 20px;
}

.modal__footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Inspiration Banner */
.mh-inspire-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  z-index: 100000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.mh-inspire-content {
  max-width: 800px;
  margin: 0 auto;
}

.mh-inspire-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mh-inspire-text {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
}

.mh-inspire-companies {
  font-size: 0.9rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

.mh-inspire-cta {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0;
}

.mh-inspire-button {
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.mh-inspire-button:hover {
  background: white;
  color: var(--primary);
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Checkbox Groups */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

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

/* Loading Spinner */
.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

/* Info Link Styles */
.info-link {
  background: none;
  border: none;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  transition: color 0.2s;
}

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

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: var(--bg-surface);
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
}

td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

tr:hover {
  background: var(--bg-surface);
}

/* Skills Table Specific */
.skill-row td {
  padding: 8px;
}

.btn-remove {
  background: var(--danger);
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.btn-remove:hover {
  background: #d32f2f;
}

.btn-add-skill {
  background: var(--success);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-add-skill:hover {
  background: #00b968;
}

/* ============================================
   AESTHETIC CIRCULAR TIME PICKER STYLES
   ============================================ */

.day-availability-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.day-availability-container:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.day-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.time-range-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: row;
}

.time-picker-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.time-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.circular-time-picker {
  position: relative;
  width: 105px;
  height: 105px;
  border: 2.25px solid #e9ecef;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 9px rgba(0,0,0,0.1);
}

.circular-time-picker:hover {
  border-color: #007bff;
  box-shadow: 0 6px 20px rgba(0,123,255,0.2);
  transform: scale(1.02);
}

.circular-time-picker.active {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.time-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: #007bff;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  background: white;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.meridiem-toggle {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 2px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease-in-out;
}

.meridiem-toggle:hover {
  background: #0056b3;
}

.meridiem-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.3);
}

.time-handle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  border: 2.25px solid white;
  box-shadow: 0 3px 9px rgba(0,0,0,0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: all 0.2s ease;
}

.time-handle:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(0,123,255,0.4);
}

.time-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.1);
}

.time-labels {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.time-label-marker {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  transform: translate(-50%, -50%);
}

/* Time labels removed for cleaner appearance */

.time-range-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6c757d;
  margin: 0 8px;
}

.remove-day-btn {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

.remove-day-btn:hover {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(220,53,69,0.4);
}

.add-day-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(40,167,69,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-day-btn:hover {
  background: linear-gradient(135deg, #20c997, #17a2b8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

.add-day-btn:before {
  content: "+";
  font-size: 1.2rem;
  font-weight: 700;
}

/* Responsive design for time pickers */
@media (max-width: 768px) {
  .time-range-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .time-range-separator {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  
  .circular-time-picker {
    width: 90px;
    height: 90px;
  }
  
  .time-handle {
    width: 15px;
    height: 15px;
  }
}

/* ============================================
   SKILLS SELECTION HIGHLIGHTING
   ============================================ */

.skill-step-highlight {
  border: 2px solid #007bff !important;
  background: #e7f3ff !important;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3) !important;
  position: relative;
  color: #007bff !important;
}

/* Pulsating animation for the select field text when category is not selected */
#skillCategory.pulsate {
  animation: pulsateSelectText 2s ease-in-out infinite;
  color: #007bff !important;
}

/* Pulsating animation for the subcategory select field text when subcategory is not selected */
#skillSubcategory.pulsate {
  animation: pulsateSelectText 2s ease-in-out infinite;
  color: #007bff !important;
}

@keyframes pulsateSelectText {
  0%, 100% {
    opacity: 1;
    font-weight: 400;
  }
  50% {
    opacity: 0.6;
    font-weight: 600;
  }
}

.skill-step-highlight::before {
  content: "Click here next!";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1000;
}

.skill-step-highlight::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #007bff;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 123, 255, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.3); }
}

.skill-step-completed {
  border: 2px solid #28a745 !important;
  background: #e8f5e8 !important;
}

.skill-step-completed::before {
  content: "✅ Completed!";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1000;
}

.skill-step-completed::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #28a745;
}

.skill-option:hover {
  background: #f0f8ff !important;
  border-color: #007bff !important;
}

.skill-option.selected {
  background: #e7f3ff !important;
  border-color: #007bff !important;
  font-weight: 600;
}

.skill-category-highlight {
  position: relative;
}

.skill-category-highlight option[value=""] {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { color: #007bff; }
  50% { color: #003f7f; }
  100% { color: #007bff; }
}

.data-source-toggle-bar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
}

.data-source-toggle-bar .toggle-label {
    font-weight: 600;
    color: #1f2937;
}

.data-source-toggle-bar .toggle-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #374151;
    cursor: pointer;
}

.data-source-toggle-bar .toggle-option input[type="checkbox"] {
    transform: scale(1.1);
}

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

.timestamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f2937;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  min-width: 120px;
}
