/* -------------------------------------------------------------------------- */
/*                           Custom Info Card Style                          */
/* -------------------------------------------------------------------------- */

/* Gradient backgrounds for header cards */
.bg-gradient-primary {
  background: linear-gradient(135deg, #2c7be5 0%, #1a5dc8 100%) !important;
}

/* Soft background utilities for status indicators */
.bg-soft-success {
  background-color: rgba(25, 135, 84, 0.1) !important;
}
.bg-soft-danger {
  background-color: rgba(220, 53, 69, 0.1) !important;
}
.bg-soft-warning {
  background-color: rgba(255, 193, 7, 0.1) !important;
}
.bg-soft-info {
  background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Utility for text truncation in flex containers */
.min-width-0 {
  min-width: 0;
}

/* -------------------------------------------------------------------------- */
/*                    Responsive Utilities for Desktop (lg+)                  */
/* -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  /* Padding utilities */
  .p-lg-3 { padding: 1rem !important; }
  .p-lg-4 { padding: 1.5rem !important; }
  .px-lg-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .py-lg-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-lg-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  
  /* Margin utilities */
  .mb-lg-2 { margin-bottom: 0.5rem !important; }
  .mb-lg-3 { margin-bottom: 1rem !important; }
  
  /* Gap utilities */
  .gap-lg-2 { gap: 0.5rem !important; }
  .gap-lg-3 { gap: 1rem !important; }
  
  /* Font size utilities */
  .fs-lg-4 { font-size: 1.5rem !important; }
  .fs-lg-5 { font-size: 1.25rem !important; }
  .fs-lg-6 { font-size: 1rem !important; }
}

/* Mobile-optimized card styles - ONLY on small screens */
@media (max-width: 575.98px) {
  .card-compact .card-header {
    padding: 0.5rem 0.75rem;
  }
  .card-compact .card-body {
    padding: 0.5rem;
  }
  .card-compact .card-footer {
    padding: 0.5rem;
  }
  .icon-circle-sm {
    width: 40px !important;
    height: 40px !important;
  }
  .icon-circle-sm i {
    font-size: 1rem !important;
  }
}

.card-info-alert {
  background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
  border: 1px solid #ffd4d4;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.08);
}

.card-info-alert-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.card-info-alert-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6b6b;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-info-alert-icon i {
  color: white;
  font-size: 18px;
}

.card-info-alert-content h5 {
  margin: 0 0 8px 0;
  color: #d32f2f;
  font-size: 14px;
  font-weight: 600;
}

.card-info-alert-content p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

.card-info-alert-content ul {
  margin: 8px 0 0 20px;
  padding: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

.card-info-alert-content li {
  margin-bottom: 4px;
}

.card-info-alert-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ffc4c4;
}

.card-info-alert-action {
  font-size: 12px;
  color: #d32f2f;
  font-weight: 500;
}

/* --- Legend for Boas Práticas and Pontuação --- */
#legend-boas-praticas .legend-card {
  border-radius: 12px;
  background: #f8fafd;
}

#legend-boas-praticas .legend-score {
  display: inline-block;
  min-width: 70px;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 600;
  text-align: center;
  margin-right: 0.3em;
  margin-bottom: 0.2em;
  color: #fff;
}
.legend-score-regular {
  background: #bf5656;
}
.legend-score-suficiente {
  background: #F4A460;
}
.legend-score-bom {
  background: #3baa3b;
}
.legend-score-otimo {
  background: #4574ca;
}
#legend-boas-praticas .legend-score span {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  color: #f8fafd;
}

#legend-boas-praticas .legend-bp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  background: #f5f8fc;
  border-radius: 6px;
  padding: 0.5em 0.7em;
  font-size: 0.85em;
  margin-bottom: 0.4em;
  color: #22223b;
  line-height: 1.4;
}
#legend-boas-praticas .legend-bp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.07);
  border: 2px solid #fff;
  flex-shrink: 0;
  margin-top: 0.1em;
}
/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

/* Custom CSS for purple badge */
.bg-purple {
  background-color: #800080; /* Example: A darker purple */
  color: white; /* Example: White text */
  border-radius: 5px; /* Example: Slightly rounded corners */
  padding: 0.3em 0.6em; /* Adjust padding as needed */
  font-size: var(--falcon-badge-font-size)
  /* Add any other custom styles you want */
}

.bg-purple:hover {
  background-color: #660066; /* Example: Darker shade on hover */
  cursor: pointer; /* Example: Indicate it's interactive */
}

/* Text purple utility */
.text-purple {
  color: #6f42c1 !important;
}

/* Border utilities */
.border-top-2 {
  border-top-width: 2px !important;
}

/* -------------------------------------------------------------------------- */
/*                          Custom XXXL Breakpoint                           */
/* -------------------------------------------------------------------------- */

/* Custom XXXL breakpoint at 1600px */
@media (min-width: 2000px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  /* Offset classes for XXXL */
  .offset-xxxl-0 {
    margin-left: 0;
  }
  
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  
  /* Display utilities for XXXL */
  .d-xxxl-none {
    display: none !important;
  }
  
  .d-xxxl-inline {
    display: inline !important;
  }
  
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  
  .d-xxxl-block {
    display: block !important;
  }
  
  .d-xxxl-grid {
    display: grid !important;
  }
  
  .d-xxxl-flex {
    display: flex !important;
  }
  
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
}

/* Custom CSS for subtle purple badge */
.badge-subtle-purple {
  background-color: #e0b0ff; /* Example: A light purple background */
  color: #800080; /* Darker purple text (same as your original badge-purple background) */
  border-radius: 5px; /* Keeping the rounded corners */
  padding: 0.3em 0.6em; /* Keeping the padding */
  font-size: var(--falcon-badge-font-size);
  border: 1px solid #d1a3f7; /* Optional: Add a subtle border */
  /* Add any other custom styles you want */
}

/* Optional: Hover effect for subtle purple badge */
.badge-subtle-purple:hover {
  background-color: #d4a3f5; /* Slightly darker background on hover */
  cursor: pointer; /* Indicate interactivity if needed */
}

/* Custom CSS for transparent badge with improved styling */
.badge-subtle-transparent {
  background-color: rgba(74, 89, 202, 0.03); /* Slightly lighter background */
  color: #333333; /* Darker, more readable text */
  border: 1px solid rgba(140, 161, 134, 0.4); /* More defined border */
  border-radius: 6px; /* Slightly more rounded corners */
  padding: 0.35em 0.7em; /* Slightly more spacious padding */
  font-size: var(--falcon-badge-font-size);
  font-weight: 500; /* Medium font weight for better readability */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
  transition: all 0.2s ease-in-out; /* Smooth transition for hover effects */
}

/* Improved hover effect for transparent badge */
.badge-subtle-transparent:hover {
  background-color: rgba(121, 163, 157, 0.25); /* Slightly darker on hover */
  color: #000000; /* Pure black text on hover for emphasis */
  border-color: rgba(140, 161, 134, 0.6); /* More visible border on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
  transform: translateY(-1px); /* Subtle lift effect */
  cursor: pointer;
}

/* Active state for the badge when clicked */
.badge-subtle-transparent:active {
  transform: translateY(0px); /* Return to original position when clicked */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Return to original shadow */
}

/* -------------------------------------------------------------------------- */
/*                             Dark Custom Button Group                       */
/* -------------------------------------------------------------------------- */

/* Alternative Dark Button Group - Neon Style */
.btn-group-neon {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 15px;
  padding: 6px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.btn-group-neon .btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(203, 213, 225, 0.6);
  color: #475569;
  font-weight: 500;
  padding: 12px 20px;
  margin: 0 3px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(5px);
}

.btn-group-neon .btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  color: #1e40af;
  box-shadow: 
    0 4px 12px rgba(59, 130, 246, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.btn-group-neon .btn.active {
  background: rgba(12, 16, 20, 0.95);
  border: 2px solid #00ffcc;
  color: #ffffff;
  box-shadow: 
    0 0 15px rgba(0, 255, 204, 0.8),
    0 0 25px rgba(0, 255, 204, 0.5),
    0 0 35px rgba(0, 255, 204, 0.3),
    inset 0 0 10px rgba(0, 255, 204, 0.1);
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.9);
  position: relative;
  overflow: visible;
  font-weight: 600;
}

/* Add a pulsing glow animation for active neon button */
.btn-group-neon .btn.active::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: transparent;
  border: 1px solid rgba(0, 255, 204, 0.6);
  border-radius: 12px;
  animation: neon-border-pulse 2s ease-in-out infinite;
  z-index: -1;
  box-shadow: 
    0 0 20px rgba(0, 255, 204, 0.4),
    inset 0 0 20px rgba(0, 255, 204, 0.1);
}

@keyframes neon-border-pulse {
  0%, 100% { 
    opacity: 0.6;
    box-shadow: 
      0 0 15px rgba(0, 255, 204, 0.3),
      inset 0 0 15px rgba(0, 255, 204, 0.05);
  }
  50% { 
    opacity: 1;
    box-shadow: 
      0 0 25px rgba(0, 255, 204, 0.6),
      inset 0 0 25px rgba(0, 255, 204, 0.1);
  }
}


/* Responsive Design for Dark Button Groups */
@media (max-width: 768px) {
  .btn-group-dark .btn,
  .btn-group-neon .btn,
  .btn-group-matrix .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    margin: 0 1px;
  }
  
  .btn-group-dark,
  .btn-group-neon,
  .btn-group-matrix {
    padding: 3px;
  }
}

@media (max-width: 576px) {
  .btn-group-dark,
  .btn-group-neon,
  .btn-group-matrix {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .btn-group-dark .btn,
  .btn-group-neon .btn,
  .btn-group-matrix .btn {
    margin: 0;
    width: 100%;
  }
}

/* Ensure the card doesn't restrict overflow */
.card.scrollbar {
  overflow: visible !important;
}

a[disabled] {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.bg-blush {
  background-color: #f8e1e4 !important; /* Blush pink */
}

.bg-neutral-lila {
  background-color:rgb(248, 223, 252) !important; /* Lila */
}

.bg-neutral-warm {
  background-color: #f8f5f2 !important; /* Warm off-white */
}

/* .notification-badge {
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -0.1rem;
  left: 0.2rem;
} */
.notification-badge {
  /* Size and shape */
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;  /* Make it a perfect circle */
  
  /* Text styling */
  font-size: 0.9rem;  /* Smaller text to fit better */
  font-weight: 600;
  
  /* Positioning */
  position: absolute;  /* Change to absolute for proper overlay */
  top: -0.5rem;
  right: -0.5rem;  /* Position in top-right of parent */
  
  /* Visual enhancement */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: inherit;
  border: 1px solid var(--falcon-border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
  /* Optional: add z-index to ensure visibility */
  z-index: 1;
  
  /* Optional: smooth transitions */
  transition: transform 0.2s ease;
}

/* -------------------------------------------------------------------------- */
/*                                Boas práticas                               */
/* -------------------------------------------------------------------------- */

/* --- Custom CSS for Boas Práticas Cards --- */
.boas-praticas-header {
  background: #f5f8fc;
  border-bottom: 1px solid #e3e8ee;
  padding: 0.75rem 1.5rem;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: #2563eb;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.boas-praticas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1rem 0;
}

.boas-praticas-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 1.1rem 1.2rem 0.7rem 1.2rem;
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: box-shadow 0.15s;
}

.boas-praticas-card:hover {
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
  border-color: #b6d0fa;
}

.boas-praticas-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.07);
  border: 2px solid #fff;
  z-index: 2;
}

.boas-praticas-title {
  margin-left: 2.8rem;
  font-weight: 600;
  color: #22223b;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.boas-praticas-desc {
  margin-left: 2.8rem;
  color: #4b5563;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
}

.boas-praticas-footer {
  margin-left: 2.8rem;
  color: #64748b;
  font-size: 0.92rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.boas-praticas-footer i {
  color: #2563eb;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .boas-praticas-card {
    min-width: 260px;
    max-width: 100%;
  }
  .boas-praticas-grid {
    gap: 0.7rem;
  }
}

@media (max-width: 800px) {
  .boas-praticas-grid {
    flex-direction: column;
    gap: 0.7rem;
  }
  .boas-praticas-card {
    min-width: 0;
    width: 100%;
  }
}

/* Responsive adjustments for legend */
@media (max-width: 992px) {
  #legend-boas-praticas .legend-bp-item {
    font-size: 0.8em;
  }
  #legend-boas-praticas .legend-bp-badge {
    width: 1.6em;
    height: 1.6em;
    font-size: 0.85em;
  }
}

@media (max-width: 768px) {
  #legend-boas-praticas .row {
    flex-direction: column;
  }
  #legend-boas-praticas .legend-bp-item {
    font-size: 0.82em;
    padding: 0.6em 0.8em;
  }
}


/* -------------------------------------------------------------------------- */
/*                                Custom Cards                                */
/* -------------------------------------------------------------------------- */

/* Minimalist Card - Base Style */
.card-minimal {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  overflow: hidden;
}



/* Minimal Card Header */
.card-minimal-header {
  padding: 0.875rem 1.25rem 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafbfc;
  position: relative;
}

.card-minimal-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(37, 99, 235, 0.3);
}

.card-minimal-header h5,
.card-minimal-header h6 {
  margin: 0;
  font-weight: 500;
  color: #374151;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.card-minimal-header h4 {
  margin: 0;
  font-weight: 500;
  color: #374151;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.card-minimal-header.accent-primary::before {
  background: rgba(37, 99, 235, 0.5);
}

.card-minimal-header.accent-success::before {
  background: rgba(5, 150, 105, 0.5);
}

.card-minimal-header.accent-warning::before {
  background: rgba(217, 119, 6, 0.5);
}

.card-minimal-header.accent-danger::before {
  background: rgba(220, 38, 38, 0.5);
}

/* Minimal Card Body */
.card-minimal-body {
  padding: 1.25rem;
}

.card-minimal-body p {
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-minimal-body p:last-child {
  margin-bottom: 0;
}

/* Minimal Card Footer */
.card-minimal-footer {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(248, 250, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Card Variants */
.card-minimal-flat {
  border: none;
  box-shadow: none;
  background: #f8fafc;
}

.card-minimal-flat:hover {
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-minimal-bordered {
  border: 2px solid #e5e7eb;
  box-shadow: none;
}

.card-minimal-bordered:hover {
  border-color: #2563eb;
}

/* Icon Cards */
.card-minimal-icon {
  text-align: center;
  padding: 1.5rem 1rem;
}

.card-minimal-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.card-minimal-icon-wrapper i {
  font-size: 1.5rem;
  color: #2563eb;
}

.card-minimal-icon h6 {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
}

.card-minimal-icon p {
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
}

/* Stats Cards */
.card-minimal-stat {
  padding: 1.25rem;
  text-align: center;
}

.card-minimal-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.card-minimal-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.card-minimal-stat-trend {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.card-minimal-stat-trend.positive {
  color: #059669;
}

.card-minimal-stat-trend.negative {
  color: #dc2626;
}

/* List Cards */
.card-minimal-list {
  padding: 0;
}

.card-minimal-list-item {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.15s ease;
}

.card-minimal-list-item:hover {
  background: rgba(248, 250, 252, 0.7);
}

.card-minimal-list-item:last-child {
  border-bottom: none;
}

.card-minimal-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-minimal-list-icon i {
  font-size: 0.9rem;
  color: #2563eb;
}

.card-minimal-list-content h6 {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

.card-minimal-list-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-minimal-body {
    padding: 1rem;
  }
  
  .card-minimal-header {
    padding: 0.875rem 1rem 0.625rem;
  }
  
  .card-minimal-footer {
    padding: 0.625rem 1rem 0.875rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .card-minimal-stat-number {
    font-size: 1.75rem;
  }
}

/* Minimalist Card upper line - Base Style */
.card-minimal-upper-line {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  overflow: hidden;
  position: relative;
}

.card-minimal-upper-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.8) 0%, rgba(37, 99, 235, 0.4) 100%);
  border-radius: 8px 8px 0 0;
}

/* Upper line card header */
.card-minimal-upper-line-header {
  padding: 0.875rem 1.25rem 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafbfc;
  margin-top: 0;
}

.card-minimal-upper-line-header h5,
.card-minimal-upper-line-header h6 {
  margin: 0;
  font-weight: 500;
  color: #374151;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.card-minimal-upper-line-header h4 {
  margin: 0;
  font-weight: 500;
  color: #374151;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* Color variants for upper line */
.card-minimal-upper-line.accent-primary::before {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.8) 0%, rgba(37, 99, 235, 0.4) 100%);
}

.card-minimal-upper-line.accent-success::before {
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.8) 0%, rgba(5, 150, 105, 0.4) 100%);
}

.card-minimal-upper-line.accent-warning::before {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.8) 0%, rgba(217, 119, 6, 0.4) 100%);
}

.card-minimal-upper-line.accent-danger::before {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.8) 0%, rgba(220, 38, 38, 0.4) 100%);
}

.card-minimal-upper-line.accent-info::before {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.8) 0%, rgba(14, 165, 233, 0.4) 100%);
}

/* Upper line card body */
.card-minimal-upper-line-body {
  padding: 1.25rem;
}

.card-minimal-upper-line-body p {
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-minimal-upper-line-body p:last-child {
  margin-bottom: 0;
}

/* Upper line card footer */
.card-minimal-upper-line-footer {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(248, 250, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Responsive design for upper line cards */
@media (max-width: 768px) {
  .card-minimal-upper-line-body {
    padding: 1rem;
  }
  
  .card-minimal-upper-line-header {
    padding: 0.875rem 1rem 0.625rem;
  }
  
  .card-minimal-upper-line-footer {
    padding: 0.625rem 1rem 0.875rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}



/* -------------------------------------------------------------------------- */
/*                                Custom Alert                                */
/* -------------------------------------------------------------------------- */

/* Stylized alerts - Base Style */

/* Alert Component Styles */
.alert-component {
  position: relative;
  padding: 16px 20px;
  margin: 12px 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;  /* Fill full width */
  box-sizing: border-box;  /* Include padding in width calculation */
}

/* Alert Types */
.alert-component.success {
  border-left-color: #22c55e;
}

.alert-component.info {
  border-left-color: #3b82f6;
}

.alert-component.warning {
  border-left-color: #f59e0b;
}

.alert-component.error {
  border-left-color: #ef4444;
}

/* Icon Styles */
.alert-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-component.success .alert-icon {
  background-color: #22c55e;
  color: white;
}

.alert-component.info .alert-icon {
  background-color: #3b82f6;
  color: white;
}

.alert-component.warning .alert-icon {
  background-color: #f59e0b;
  color: white;
}

.alert-component.error .alert-icon {
  background-color: #ef4444;
  color: white;
}

/* Content Area */
.alert-content {
  flex: 1;
  min-width: 0;
}

.alert-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #1f2937;
}

.alert-message {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Close Button */
.alert-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s ease;
  font-size: 18px;
  line-height: 1;
}

.alert-close:hover {
  color: #6b7280;
  background-color: #f3f4f6;
}

/* Link Styles */
.alert-link {
  color: #3b82f6;
  text-decoration: underline;
  font-weight: 500;
}

.alert-link:hover {
  color: #2563eb;
}

/* Responsive */
@media (max-width: 640px) {
  .alert-component {
    margin: 8px 0;
    padding: 14px 16px;
    border-radius: 8px;
  }
  
  .alert-title {
    font-size: 15px;
  }
  
  .alert-message {
    font-size: 13px;
  }
}

/* Animation for show/hide */
.alert-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.alert-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.alert-exit {
  opacity: 1;
  transform: translateY(0);
}

.alert-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Icon Button Styles (for the circular icons in the image) */
.icon-buttons-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.icon-button.info {
  background-color: #3b82f6;
}

.icon-button.success {
  background-color: #22c55e;
}

.icon-button.warning {
  background-color: #f59e0b;
}

.icon-button.error {
  background-color: #ef4444;
}

/* =================================
   SIMPLE PAPER NOTES COMPONENT
   ================================= */

/* Base paper note style - SIMPLIFIED */
.paper-note {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px 16px 50px;
  margin: 16px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  border-left: 4px solid var(--note-color, #6c757d);
  max-width: 600px;
  transition: box-shadow 0.2s ease;
}

.paper-note:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Simple icon */
.paper-note-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--note-icon-bg, #ffc107);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--note-icon-color, #212529);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Note content */
.paper-note-content {
  line-height: 1.6;
  color: #212529;
}

.paper-note-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #495057;
}

.paper-note-text {
  font-size: 14px;
  margin: 0;
  color: #6c757d;
}

/* Paper note variants */
.paper-note.warning {
  --note-color: #fd7e14;
  --note-icon-bg: #fff3cd;
  --note-icon-color: #664d03;
  background: #fffbf0;
  border-color: #fed7aa;
}

.paper-note.info {
  --note-color: #0d6efd;
  --note-icon-bg: #cfe2ff;
  --note-icon-color: #084298;
  background: #f0f8ff;
  border-color: #b6d4fe;
}

.paper-note.success {
  --note-color: #198754;
  --note-icon-bg: #d1e7dd;
  --note-icon-color: #0f5132;
  background: #f0fff4;
  border-color: #b3e5d1;
}

.paper-note.danger {
  --note-color: #dc3545;
  --note-icon-bg: #f8d7da;
  --note-icon-color: #721c24;
  background: #fff5f5;
  border-color: #f5c2c7;
}

/* Responsive design */
@media (max-width: 576px) {
  .paper-note {
    padding: 14px 16px 14px 40px;
    margin: 12px 0;
  }
  
  .paper-note-icon {
    left: 12px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 3px;
  }
  
  .paper-note-title {
    font-size: 15px;
  }
  
  .paper-note-text {
    font-size: 13px;
  }
}

/* ==== ATTENTION-GRABBING ANIMATIONS ==== */

/* Original blink - simple but effective */
@keyframes blink {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}

.blinking {
  animation: blink 1s infinite;
}

/* Pulse - smoother and more modern than blink */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-attention {
  animation: pulse 2s ease-in-out infinite;
}

/* Glow effect - perfect for important elements */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5),
                0 0 10px rgba(13, 110, 253, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.8),
                0 0 30px rgba(13, 110, 253, 0.5),
                0 0 40px rgba(13, 110, 253, 0.3);
  }
}

.glow-attention {
  animation: glow 2s ease-in-out infinite;
  border-radius: 0.375rem; /* Bootstrap 5 default border-radius */
}

/* Gentle shake - great for alerts */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake-attention {
  animation: shake 0.5s ease-in-out;
  animation-iteration-count: 3;
}

/* Bounce - fun and eye-catching */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.bounce-attention {
  animation: bounce 2s infinite;
}

/* Gradient border animation - premium look */
@keyframes gradient-border {
  0% {
    border-color: rgba(13, 110, 253, 1);
  }
  25% {
    border-color: rgba(111, 66, 193, 1);
  }
  50% {
    border-color: rgba(220, 53, 69, 1);
  }
  75% {
    border-color: rgba(255, 193, 7, 1);
  }
  100% {
    border-color: rgba(13, 110, 253, 1);
  }
}

.gradient-border-attention {
  border: 3px solid;
  animation: gradient-border 3s linear infinite;
  border-radius: 0.375rem;
}

/* Subtle highlight - for professional contexts */
@keyframes highlight {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(255, 193, 7, 0.2);
  }
}

.highlight-attention {
  animation: highlight 2s ease-in-out infinite;
}

/* Combination: Pulse + Glow (very effective!) */
.pulse-glow-attention {
  animation: pulse 2s ease-in-out infinite,
             glow 2s ease-in-out infinite;
  border-radius: 0.375rem;
}

/* ==== UTILITY CLASSES ==== */
.attention-slow {
  animation-duration: 3s !important;
}

.attention-fast {
  animation-duration: 0.8s !important;
}

.attention-once {
  animation-iteration-count: 1 !important;
}

.attention-twice {
  animation-iteration-count: 2 !important;
}

/* ==== HOVER EFFECTS ==== */
/* Icon Circle */
.icon-circle {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
}

.icon-circle-primary {
  background-color: rgba(13, 110, 253, 0.1);
}

/* -------------------------------------------------------------------------- */
/*                     Agendador - Home & Appointments                       */
/* -------------------------------------------------------------------------- */

.agenda-summary-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(56, 102, 255, 0.2);
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.1);
}

.agenda-summary-card .badge {
  font-size: 0.75rem;
}

.appointment-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.appointment-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(13, 110, 253, 0.1);
  box-shadow: 0 0.8rem 1.5rem rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.appointment-card:hover {
  box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.15);
  border-color: rgba(13, 110, 253, 0.2);
}

.appointment-chip {
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 600;
  min-width: 65px;
  text-align: center;
}

.appointment-action-btn {
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 0.3rem 0.8rem rgba(40, 167, 69, 0.15);
}

.appointment-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.2rem rgba(40, 167, 69, 0.25);
}

.appointment-action-btn:active {
  transform: translateY(0);
  box-shadow: 0 0.2rem 0.5rem rgba(40, 167, 69, 0.15);
}

@media (max-width: 991px) {
  .appointment-card {
    flex-direction: column;
    gap: 0.5rem;
  }
}

  /* Button hover effects */
  .btn {
    transition: all 0.3s ease !important;
  }

  .btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(37, 99, 235, 0.3) !important;
  }

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

/* -------------------------------------------------------------------------- */
/*                     Enhanced Form Controls Styling                        */
/* -------------------------------------------------------------------------- */

/* Multiselect Component Styling */
.multiselect {
  border-radius: 0.5rem !important;
  font-size: 0.95rem;
}

.multiselect__tags {
  border: 2px solid #e3e8ee !important;
  border-radius: 0.5rem !important;
  padding: 0.375rem 2.5rem 0.25rem 0.5rem !important;
  min-height: 38px !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;

  /* ensure there is enough right padding for the spinner */
  padding-right: 5rem !important;
}

.multiselect__tags:hover {
  border-color: #c7d2fe !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08) !important;
}

.multiselect__tags:focus-within,
.multiselect--active .multiselect__tags {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15) !important;
}

.multiselect__input,
.multiselect__single {
  font-size: 0.95rem !important;
  padding: 0.25rem 0.5rem !important;
  margin-bottom: 0.25rem !important;
  background: transparent !important;
  border: none !important;
  color: #374151 !important;
}

.multiselect__input::placeholder {
  color: #9ca3af !important;
}

.multiselect__placeholder {
  color: #9ca3af !important;
  padding-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
  font-size: 0.95rem !important;
}

.multiselect__select {
  height: 38px !important;
  transition: transform 0.3s ease !important;
}

.multiselect__select:hover {
  background: rgba(37, 99, 235, 0.05) !important;
}

.multiselect--active .multiselect__select {
  transform: rotate(180deg) !important;
}

/* Multiselect Dropdown */
.multiselect__content-wrapper {
  border: 2px solid #2563eb !important;
  border-top: none !important;
  border-radius: 0 0 0.5rem 0.5rem !important;
  margin-top: -1px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  max-height: 280px !important;
}

.multiselect__content {
  padding: 0.25rem !important;
}

.multiselect__element {
  margin-bottom: 0.15rem !important;
}

.multiselect__option {
  padding: 0.625rem 0.875rem !important;
  border-radius: 0.375rem !important;
  font-size: 0.9rem !important;
  transition: all 0.2s ease !important;
  color: #374151 !important;
  line-height: 1.5 !important;
  min-height: auto !important;
}

.multiselect__option--highlight {
  background: #e0e7ff !important;
  color: #1e40af !important;
}

.multiselect__option--highlight:hover {
  background: #c7d2fe !important;
}

.multiselect__option--selected {
  background: #2563eb !important;
  color: #ffffff !important;
  font-weight: 500 !important;
}

.multiselect__option--selected:hover {
  background: #1d4ed8 !important;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #1e40af !important;
  color: #ffffff !important;
}

/* Multiselect Tags (for multiple selection) */
.multiselect__tag {
  background: #2563eb !important;
  border-radius: 0.375rem !important;
  padding: 0.25rem 1.75rem 0.25rem 0.625rem !important;
  margin-right: 0.375rem !important;
  margin-bottom: 0.25rem !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.multiselect__tag:hover {
  background: #1d4ed8 !important;
}

.multiselect__tag-icon {
  border-radius: 0.25rem !important;
  transition: all 0.2s ease !important;
}

.multiselect__tag-icon:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.multiselect__tag-icon:after {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Select Element Styling */
select.form-control,
select.form-select {
  border: 2px solid #e3e8ee !important;
  border-radius: 0.5rem !important;
  padding: 0.45rem 2.5rem 0.45rem 0.75rem !important;
  min-height: 38px !important;
  font-size: 0.95rem !important;
  color: #374151 !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
}

select.form-control:hover,
select.form-select:hover {
  border-color: #c7d2fe !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08) !important;
}

select.form-control:focus,
select.form-select:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
}

select.form-control:disabled,
select.form-select:disabled {
  background-color: #f3f4f6 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Input Element Styling */
input.form-control,
textarea.form-control {
  border: 2px solid #e3e8ee !important;
  border-radius: 0.5rem !important;
  padding: 0.45rem 0.75rem !important;
  min-height: 38px !important;
  font-size: 0.95rem !important;
  color: #374151 !important;
  background-color: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

input.form-control:hover,
textarea.form-control:hover {
  border-color: #c7d2fe !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08) !important;
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
  background-color: #ffffff !important;
}

input.form-control:disabled,
textarea.form-control:disabled {
  background-color: #f3f4f6 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

/* Textarea specific */
textarea.form-control {
  min-height: 100px !important;
  resize: vertical !important;
}

/* Input Group Styling */
.input-group .form-control {
  border-right: none !important;
}

.input-group .input-group-text {
  border: 2px solid #e3e8ee !important;
  border-left: none !important;
  background-color: #f8fafc !important;
  color: #6b7280 !important;
  transition: all 0.3s ease !important;
}

.input-group:focus-within .form-control {
  border-color: #2563eb !important;
}

.input-group:focus-within .input-group-text {
  border-color: #2563eb !important;
  background-color: #eff6ff !important;
  color: #2563eb !important;
}

/* Validation States */
.form-control.is-valid,
.form-select.is-valid {
  border-color: #059669 !important;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
  border-color: #059669 !important;
  box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.15) !important;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc2626 !important;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15) !important;
}

/* Form Label Enhancement */
.form-label {
  font-weight: 500 !important;
  color: #374151 !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.95rem !important;
}

.form-label.required::after {
  content: " *";
  color: #dc2626;
  font-weight: 600;
}

/* Small text under inputs */
.form-text {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  margin-top: 0.375rem !important;
}

/* Checkbox and Radio Styling */
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0 !important;
  margin-bottom: 0.5rem;
}

.form-check-input {
  /* larger and more visible by default */
  width: 1.15rem !important;
  height: 1.15rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  border: 2px solid #9aa7b6 !important; /* stronger border for unselected */
  background-color: #ffffff !important;
  border-radius: 0.375rem !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
  flex-shrink: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

/* visible hover state for easier discovery */
.form-check-input:hover {
  border-color: #7ea7ff !important;
  transform: translateY(-1px) !important;
}

/* keyboard focus state */
.form-check-input:focus {
  outline: none !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 0.18rem rgba(37, 99, 235, 0.18) !important;
}

/* Radio button specific styling */
.form-check-input[type="radio"] {
  border-radius: 50% !important;
}

/* checked state - clear blue fill */
.form-check-input:checked {
  background-color: #2563eb !important;
  border-color: #1d4ed8 !important;
  /* subtle glossy gradient */
  background-image: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08),
              0 3px 8px rgba(37,99,235,0.14);
  transform: translateY(-1px) scale(1.02);
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative !important;
}

/* Radio button checked inner circle */
.form-check-input[type="radio"]:checked::before {
  content: '' !important;
  display: block !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-radius: 50% !important;
  background-color: white !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* show a checkmark inside when checked for browsers that don't style default checkbox */
.form-check-input[type="checkbox"]:checked::after {
  /* Use an inline SVG for a crisp check icon */
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http://www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20%206L9%2017l-5-5%27/%3E%3C/svg%3E");
}

/* Emphasize label when the corresponding checkbox is checked */
.form-check-input:checked + .form-check-label,
.form-check-input:checked ~ .form-check-label {
  color: #1e3a8a !important; /* deeper blue */
  font-weight: 600 !important;
}

/* Accessible focus-visible state */
.form-check-input:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 0.22rem rgba(37, 99, 235, 0.18) !important;
}

.form-check-label {
  display: inline-block !important;
  font-size: 0.95rem !important;
  color: #374151 !important;
  cursor: pointer !important;
  margin: 0 0 0 0 !important;
  user-select: none !important;
  line-height: 1.15rem !important;
  vertical-align: middle !important;
  transform: none !important;
}

/* inline alignment and spacing when using bootstrap inline checks */
.form-check-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-right: 1rem !important;
  padding-left: 0 !important;
}

/* ensure disabled state remains legible but muted */
.form-check-input:disabled {
  background-color: #f3f4f6 !important;
  border-color: #e6e9ee !important;
  opacity: 0.9 !important;
  cursor: not-allowed !important;
}

/* -------------------------------------------------------------------------- */
/*                          Enhanced Form Switch Styling                     */
/* -------------------------------------------------------------------------- */

/* Form Switch Container */
.form-switch {
  padding-left: 0 !important;
  min-height: auto !important;
}

/* Form Switch Input - Toggle Style */
.form-switch .form-check-input {
  width: 2.5rem !important;
  height: 1rem !important;
  border-radius: 2rem !important;
  background-color: #d1d5db !important;
  background-image: none !important;
  border: 1px solid transparent !important;
  position: relative !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12) !important;
}

/* Switch toggle handle (knob) */
.form-switch .form-check-input::before {
  content: '' !important;
  position: absolute !important;
  width: 0.875rem !important;
  height: 0.875rem !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  top: 50% !important;
  left: 0.0625rem !important;
  transform: translateY(-50%) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
              0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* Switch hover state */
.form-switch .form-check-input:hover {
  background-color: #b8bcc5 !important;
  border-color: transparent !important;
  transform: none !important;
}

.form-switch .form-check-input:hover::before {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25),
              0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Switch focus state */
.form-switch .form-check-input:focus {
  background-color: #d1d5db !important;
  border-color: transparent !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12),
              0 0 0 0.2rem rgba(37, 99, 235, 0.15) !important;
}

/* Switch checked state - moves to right with color change */
.form-switch .form-check-input:checked {
  background-color: #2563eb !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15),
              0 0 6px rgba(37, 99, 235, 0.3) !important;
  transform: none !important;
}

.form-switch .form-check-input:checked::before {
  left: calc(100% - 0.9375rem) !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25),
              0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Switch checked hover state */
.form-switch .form-check-input:checked:hover {
  background-color: #1d4ed8 !important;
}

/* Switch checked focus state */
.form-switch .form-check-input:checked:focus {
  background-color: #2563eb !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15),
              0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

/* Override the checkmark for switch - not needed */
.form-switch .form-check-input:checked::after {
  display: none !important;
}

/* Switch label alignment */
.form-switch .form-check-label {
  margin-left: 0.5rem !important;
  line-height: 1.35rem !important;
  vertical-align: middle !important;
}

/* Switch disabled state */
.form-switch .form-check-input:disabled {
  background-color: #e5e7eb !important;
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.form-switch .form-check-input:disabled::before {
  background-color: #f9fafb !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.form-switch .form-check-input:checked:disabled {
  background-color: #93c5fd !important;
}

.form-switch .form-check-input:disabled + .form-check-label {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

/* Success variant switch */
.form-switch.switch-success .form-check-input:checked {
  background-color: #10b981 !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15),
              0 0 6px rgba(16, 185, 129, 0.3) !important;
}

.form-switch.switch-success .form-check-input:checked:hover {
  background-color: #059669 !important;
}

/* Warning variant switch */
.form-switch.switch-warning .form-check-input:checked {
  background-color: #f59e0b !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15),
              0 0 6px rgba(245, 158, 11, 0.3) !important;
}

.form-switch.switch-warning .form-check-input:checked:hover {
  background-color: #d97706 !important;
}

/* Danger variant switch */
.form-switch.switch-danger .form-check-input:checked {
  background-color: #ef4444 !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15),
              0 0 6px rgba(239, 68, 68, 0.3) !important;
}

.form-switch.switch-danger .form-check-input:checked:hover {
  background-color: #dc2626 !important;
}

/* Small switch variant */
.form-switch.form-switch-sm .form-check-input {
  width: 2rem !important;
  height: 1.1rem !important;
}

.form-switch.form-switch-sm .form-check-input::before {
  width: 0.8rem !important;
  height: 0.8rem !important;
  left: 0.1rem !important;
}

.form-switch.form-switch-sm .form-check-input:checked::before {
  left: calc(100% - 0.9rem) !important;
}

.form-switch.form-switch-sm .form-check-label {
  line-height: 1.1rem !important;
  font-size: 0.875rem !important;
}

/* Large switch variant */
.form-switch.form-switch-lg .form-check-input {
  width: 3rem !important;
  height: 1.6rem !important;
}

.form-switch.form-switch-lg .form-check-input::before {
  width: 1.25rem !important;
  height: 1.25rem !important;
  left: 0.15rem !important;
}

.form-switch.form-switch-lg .form-check-input:checked::before {
  left: calc(100% - 1.4rem) !important;
}

.form-switch.form-switch-lg .form-check-label {
  line-height: 1.6rem !important;
  font-size: 1.05rem !important;
}

/* Smooth animation on page load */
@media (prefers-reduced-motion: no-preference) {
  .form-switch .form-check-input,
  .form-switch .form-check-input::before {
    transition-duration: 0.25s !important;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input,
  .form-switch .form-check-input::before {
    transition: none !important;
  }
}

/* Page-scoped: nudge only the report radio block visually (no reflow) */
.report-inline-group { transform: translateY(5px); }

/* File Input Styling */
input[type="file"].form-control {
  padding: 0.5rem 0.875rem !important;
}

input[type="file"].form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem !important;
  margin-right: 0.75rem !important;
  background-color: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

input[type="file"].form-control::-webkit-file-upload-button:hover {
  background-color: #1d4ed8 !important;
  transform: translateY(-1px) !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .multiselect__tags,
  select.form-control,
  select.form-select,
  input.form-control,
  textarea.form-control {
    min-height: 42px !important;
    font-size: 0.9rem !important;
  }
  
  .form-label {
    font-size: 0.9rem !important;
  }
}

  /* User icon animation */
  .fa-stack:hover {
    transform: scale(1.1);
  }

 

  /* Loading spinner animation enhancement: make spinners circular and smoother.
     Use a lightweight rotating-border spinner for inline/small contexts (like multiselect).
     We keep an improved global .spinner-border but add more targeted rules for
     elements inside .multiselect to ensure the icon appears round and well-sized. */

  .spinner-border {
    /* fallback for any global spinner usage */
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    box-sizing: border-box;
    /* border: 2px solid rgba(0,0,0,0.08);
    border-top-color: #2563eb; /* primary accent */
    animation: ms-spin 0.75s linear infinite, pulse 2s ease-in-out infinite !important;
  }

  /* Compact spinner used inside multiselects and other inline controls */
  .multiselect .spinner-border,
  .multiselect__spinner,
  .multiselect__loading { 
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /* border: 2px solid rgba(37,99,235,0.12);
    border-top-color: #2563eb;
    border-right-color: rgba(37,99,235,0.35); 
    box-shadow: 0 1px 2px rgba(16,24,40,0.03); */
    display: inline-block;
    vertical-align: middle;
    animation: ms-spin 0.75s linear infinite;
  }

  /* even smaller variant (if spinner-border-sm used) */
  .multiselect .spinner-border.spinner-border-sm,
  .multiselect__spinner.sm,
  .multiselect__loading.sm {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.75;
    }
  }

  @keyframes ms-spin {
    to { transform: rotate(360deg); }
  }

  /* Alert animation */
  .alert {
    animation: slideIn 0.4s ease-out;
  }

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

  /* Email section hover effect */
  .bg-light:has(#alterar_email):hover {
    background-color: #f0f4f8 !important;
    border-color: #2563eb !important;
  }

  /* Disabled button styling */
  .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none !important;
  }

  /* Form label icon animation */
  .form-label i {
    transition: transform 0.3s ease;
  }

  .form-label:hover i {
    transform: translateX(3px);
  }

  /* Responsive adjustments */
  @media (max-width: 576px) {
    .card {
      border-radius: 0.75rem !important;
    }
    
    .card-header {
      border-radius: 0.75rem 0.75rem 0 0 !important;
    }
  }

/* -------------------------------------------------------------------------- */
/*                           Login Page Styles                                */
/* -------------------------------------------------------------------------- */

/* CSS Variables */
:root {
  --login-primary: #4f46e5;
  --login-secondary: #6366f1;
  --login-accent: #64748b;
  --login-success: #22c55e;
  --login-danger: #ef4444;
  --login-bg: #f8fafc;
  --login-card-bg: #ffffff;
  --login-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Login Background */
.login-page-bg {
  background: var(--login-bg);
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

.login-page-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Login Container */
.login-container {
  animation: login-fadeInUp 0.6s ease-out;
}

@keyframes login-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Card */
.login-card {
  background: var(--login-card-bg);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.08);
  transition: var(--login-transition);
  overflow: hidden;
}

/* Login Header */
.login-header {
  background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-secondary) 100%);
  color: white;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.login-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.login-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.login-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.login-logo-icon i {
  font-size: 1.5rem;
}

.login-subtitle {
  font-size: 0.875rem;
  opacity: 0.95;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Login Form Elements */
.login-form .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.login-form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  transition: var(--login-transition);
  background: #ffffff;
  height: auto;
}

.login-form .form-control::placeholder {
  color: #9ca3af;
}

.login-form .form-control:hover {
  border-color: #cbd5e1;
}

.login-form .form-control:focus {
  border-color: var(--login-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: white;
}

.login-form .form-control.is-invalid {
  border-color: var(--login-danger);
  background-image: none;
  background-color: #fef2f2;
}

.login-form .form-control.is-invalid:focus {
  border-color: var(--login-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  background-color: #fef2f2;
}

/* Password Toggle Button */
.login-password-toggle {
  border: 1px solid #e2e8f0;
  border-left: none;
  background: #ffffff;
  color: #64748b;
  border-radius: 0 0.625rem 0.625rem 0;
  transition: var(--login-transition);
  padding: 0 1rem;
}

.login-password-toggle:hover {
  color: var(--login-primary);
  background: #f8fafc;
}

.login-password-toggle:focus {
  box-shadow: none;
}

/* Login Button */
.btn-login {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-secondary) 100%);
  border: none;
  transition: var(--login-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25), 0 2px 4px rgba(79, 70, 229, 0.15);
  background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
}

.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Loading Spinner */
.login-spinner {
  display: inline-block;
  margin-left: 0.5rem;
}

/* Error Message */
.login-error-message {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}

.login-error-message i {
  font-size: 0.75rem;
}

/* Login Alert */
.login-alert {
  border-radius: 0.625rem;
  border: none;
  padding: 0.875rem 1rem;
}

.login-alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.login-alert-success {
  background: linear-gradient(135deg, var(--login-success) 0%, #16a34a 100%);
  color: white;
}

.login-alert-success .alert-heading {
  color: white;
  font-weight: 600;
}

/* Divider */
.login-divider {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.login-divider span {
  position: relative;
  background: white;
  padding: 0 1rem;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Sign Up Link */
.login-signup-link {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
}

.login-signup-link small {
  color: #64748b;
}

.login-signup-link a {
  color: var(--login-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--login-transition);
  position: relative;
}

.login-signup-link a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--login-primary);
  transition: width 0.3s ease;
}

.login-signup-link a:hover {
  color: var(--login-secondary);
}

.login-signup-link a:hover::after {
  width: 100%;
}

/* Vue Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

.slide-fade-enter-active {
  transition: all 0.4s ease-out;
}

.slide-fade-leave-active {
  transition: all 0.3s ease-in;
}

.slide-fade-enter-from {
  transform: translateX(-20px);
  opacity: 0;
}

.slide-fade-leave-to {
  transform: translateX(20px);
  opacity: 0;
}

/* Success Icon Animation */
.login-success-icon {
  animation: login-success-bounce 0.6s ease-out;
}

@keyframes login-success-bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Input Group with Password Toggle */
.login-input-group {
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: var(--login-transition);
}

.login-input-group:focus-within {
  border-color: var(--login-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.login-input-group .form-control {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
}

.login-input-group .form-control:focus {
  border: none;
  box-shadow: none !important;
}

.login-input-group .login-password-toggle {
  border: none;
  border-left: 1px solid #e2e8f0;
  border-radius: 0;
  background: #ffffff;
  padding: 0 1rem;
  color: #64748b;
  transition: var(--login-transition);
}

.login-input-group .login-password-toggle:hover {
  color: var(--login-primary);
  background: #f8fafc;
}

.login-input-group .login-password-toggle:focus {
  box-shadow: none;
  outline: none;
}

/* Forgot Password Button */
.btn-forgot-password {
  border: 1px solid #fbbf24;
  color: #d97706;
  background: #fffbeb;
  border-radius: 0.625rem;
  padding: 0.625rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--login-transition);
}

.btn-forgot-password:hover {
  background: #fef3c7;
  color: #b45309;
  border-color: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(217, 119, 6, 0.15);
}

.btn-forgot-password:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Login Card Body */
.login-card-body {
  padding: 2rem 2rem 2.25rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .login-page-bg {
    padding: 1rem;
  }
  
  .login-card {
    border-radius: 1rem;
    margin: 0;
  }
  
  .login-header {
    padding: 2rem 1.5rem 1.75rem;
  }
  
  .login-logo {
    font-size: 1.75rem;
  }
  
  .login-logo-icon {
    width: 48px;
    height: 48px;
  }
  
  .login-logo-icon i {
    font-size: 1.25rem;
  }
  
  .login-card-body {
    padding: 1.75rem 1.5rem;
  }
  
  .btn-login {
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 375px) {
  .login-header {
    padding: 1.75rem 1.25rem 1.5rem;
  }
  
  .login-logo {
    font-size: 1.625rem;
  }
  
  .login-card-body {
    padding: 1.5rem 1.25rem;
  }
}