
/* Background color for the entire page */
body {
    background-color: #f3f4f6;
    min-height: 100vh;
}

/* Container styling */
.login-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 495px;
    margin: 2rem auto;
    box-sizing: border-box;
}

@media (max-width: 640px) {
  .login-container {
    padding: 1rem;
    max-width: 95vw;
    min-width: unset;
    border-radius: 8px;
  }
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    font-size: 15px;
    padding: 7px;
  }
}

/* Focus styles */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #FE5000;
    outline: none;
    box-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
}

/* Checkbox custom styles */
input[type="checkbox"] {
    accent-color: #FE5000; /* Works in modern browsers */
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Remember me text color */
.remember-me-label {
    color: #FE5000 ; /* Tailwind's orange-500 */
    font-size: 14px;
}



/* Login button */
.login-btn {
    background-color: #f97316 ;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-sizing: border-box;
}

@media (max-width: 640px) {
  .login-btn {
    font-size: 16px;
    padding: 10px;
  }
}

.login-btn:hover {
    background-color: #FE5000 ;
}

/* Forgot password link */
.forgot-password {
    color: #FE5000;
    text-decoration: none;
    font-size: 14px;
    word-break: break-word;
}

@media (max-width: 640px) {
  .forgot-password {
    font-size: 13px;
  }
}

.forgot-password:hover {
    text-decoration: underline;
}

.sidebar {
    background-color: #10293E ;
    width: 240px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
  .sidebar {
    width: 100vw;
    min-width: unset;
    max-width: 100vw;
    position: relative;
    left: 0;
    top: 0;
    border-radius: 0 0 10px 10px;
  }
  .sidebar-content {
    margin-top: 0.5rem;
    padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  .sidebar {
    width: 100vw;
    min-width: unset;
    max-width: 100vw;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .sidebar-content ul li a {
    font-size: 15px;
    padding: 8px 10px;
  }
}
.sidebar-content {
    flex: 1 1 0%;
    flex-direction: column;
    margin-top: 1rem;
}


.sidebar-content ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 16px;
}
.sidebar-content ul li a:hover {
    background-color: #fe500052; /* Tailwind's bg-blue-800 */
    color: #FE5000;
    border-right-width: 5px;
    border-right-style: solid;
    border-right-color: #FE5000; /* Tailwind's bg-blue-800 */
}

.sidebar-content ul li a i:hover {
 
    color: #FE5000;
  
}

.sidebar-content ul li a.active{
    background-color: #fe500052; /* Tailwind's bg-blue-800 */
    color: #FE5000;
    border-right-width: 5px;
    border-right-style: solid;
    border-right-color: #FE5000; /* Tailwind's bg-blue-800 */
}

.sidebar-content ul li a i.active{
  
    color: #FE5000;
   
}
.date-dropdown {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.7rem;
    margin-top: 8px;
    width: 450px;
    position: absolute;
    right: 0;
    z-index: 50;
}
.quick-date-option {
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-family: plus-jakarta-sans, sans-serif;
    font-size: 16px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 9999px;
    color: #374151; /* Tailwind's text-gray-700 */
  }

.quick-date-option:hover {
   
    background-color: #FFEDD5; /* Tailwind's bg-orange-100 */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 9999px;
    color: #FE5000; /* Tailwind's text-orange-600 */
}
  
.quick-date-option.active {
    background-color: #FFEDD5; /* Tailwind's bg-orange-100 */
    color: #FE5000; /* Tailwind's text-orange-600 */
 }
  
  
  /* ---------- Action Buttons ---------- */
.button-cancel {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #374151; /* Tailwind's text-gray-700 */
    border-radius: 9999px;
    border: solid 1px;
    border-color: #d1d5db; /* Tailwind's border-gray-300 */
    transition: background-color 0.15s ease-in-out;
 }
    
.button-cancel:hover {
    background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
}
  
.button-apply {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #FE5000; /* Tailwind's bg-orange-500 */
    color: white;
    border-radius: 9999px;
    transition: background-color 0.15s ease-in-out;
}
    
.button-apply:hover {
    background-color: #ea580c; /* Tailwind's bg-orange-600 */
    transition-duration: 150ms;
}
  
  
  /* ---------- Calendar Styles ---------- */
  
  /* Highlight today */
.calendar-day {
    text-align: center;
    border-radius: 9999px;
    cursor: pointer; /* <--- Show pointer */
    transition: background-color 0.3s;
}

.calendar-day.today {
    background-color: #FFEDD5; /* Tailwind's bg-orange-100 */
    color: #FE5000; /* Tailwind's text-orange-600 */
    font-weight: bold;
  }
  
  /* Hover effect on calendar days */
.calendar-day:hover {
    background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
    cursor: pointer;
  }
  
  /* Selected date */
.calendar-day.selected {
    background-color: #FE5000; /* Tailwind's bg-orange-500 */
    color: white;
    border-radius: 9999px;
  }

  .calendar-day-hover:hover {
    background-color: #fe50002a; /* Tailwind's bg-orange-500 */
    color: #FE5000;
    border-radius: 9999px;
  }

.main-content {
    margin-left: 250px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
  .main-content {
    margin-left: 0;
    padding: 1rem;
  }
}
/* Cards styling */
.card {
    border-radius: 0.35rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 640px) {
  .card {
    padding: 0.5rem;
  }
}

.card-body {
    padding: 1.25rem;
}

/* Circular Icon Badges */
.icon-circle {
    height: 2rem;
    width: 2rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
}
/* Background colors */
.bg-primary {
    background-color: #4e73df !important;
}

.bg-warning {
    background-color: #f6c23e !important;
}

.bg-info {
    background-color: #36b9cc !important;
    
}

.bg-danger {
    background-color: #e74a3b !important;
}
.bg-success {
    background-color: #1cc88a !important;
}

/* .border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
} */

.text-xs {
    font-size: 0.7rem;
}
.text-blue-black {
    color:#10293E !important;
}
.text-orange {
    color: #ff8d57 !important;
}
.text-primary {
    color: #4e73df !important;
}

.text-warning {
    color: #f6c23e !important;
}

.text-info {
    color: #36b9cc !important;
}

.text-danger {
    color: #e74a3b !important;
}

.text-success {
    color: #1cc88a !important;
}

.shadow {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.btn {
    
    border-radius: 0.35rem;
    transition: all 0.15s ease-in-out;
    background-color: #FE5000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}   
.btn:hover {
    background-color: #ea580c;
    transition-duration: 150ms;
}

.btn-1 {
    background-color: #ea5a0c00;
    color: #ea580c;
    border: 1px solid #ea580c;
    font-weight: 500;
}

.btn-1:hover {
    background-color: #ea5a0c1e;
    color:  #ea580c;
    transition-duration: 150ms;
}

.flatpickr-calendar {
    border: 1.5px solid #fb923c !important;
    box-shadow: 0 4px 24px rgba(16,41,62,0.08) !important;
}

/* Header and month navigation */
.flatpickr-months {
    background: #fff !important;
    color: #fff;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #fb923c !important;
}
.flatpickr-current-month input.cur-month {
    color: #fb923c !important;
    font-weight: bold;
}

/* Weekdays */
.flatpickr-weekdays {
    background: #f9fafb;
}
.flatpickr-weekday {
    color: #10293e !important;
    font-weight: 600;
}

/* Days */
.flatpickr-day {
    /* color: #10293e !important; */
    border-radius: 6px !important;
    transition: background 0.2s ease-in-out !important;
}
.flatpickr-day.today {
    background: #fde68a !important;
    color: #10293e !important;
    border: 1px solid #fb923c !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #fb923c !important;
    color: #fff !important;
    border: none !important;
}
.flatpickr-day:hover, .flatpickr-day:focus {
    background: #fb923c !important;
    color: #fff !important;
}

/* Time picker */
.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
    color: #10293e !important;
    font-weight: 600;
}
.flatpickr-time input:focus {
    border-color: #fb923c !important;
    outline: none;
}