.auth-container {
    background: rgba(3, 49, 58, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 800px;
    animation: fadeIn 1s ease-in;
    display: block;
    margin: auto;
  }
  
  .auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1e4356;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .submit-btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 1rem;
    background: white;
    color: #1e4356;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .auth-links {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .auth-links a {
    color: #1e4356;
    text-decoration: none;
  }
  
  .auth-links a:hover {
    text-decoration: underline;
  }
  
  .error-message {
    color: #ff4444;
    background: transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
  }
  .password-container {
    position: relative;
    width: 100%;
  }
  
  .password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #1a2a6c;
    z-index: 10;
  }
  
  .password-toggle:hover {
    color: #000;
  }
  /* Style Django form errors */
  .errorlist {
    list-style: none;
    color: #ff4444;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }

  
  .prediction-container {
    background: rgba(195, 144, 144, 0.1) !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.input-section {
    margin-bottom: 3rem;
}

.input-section h2 {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 2rem;
}

input[type="text"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit {
    background: #ff7b25;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 123, 37, 0.3);
}

.btn-submit:hover {
    background: #ff8c3f;
    transform: translateY(-2px);
}

.btn-clear {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.btn-clear:hover {
    background: white;
    transform: translateY(-2px);
}

.results-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.prediction-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.info-item:hover {
    transform: translateY(-3px);
}

.info-item p {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    color: #97dde8;
    font-weight: 500;
}

.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    border: none !important;
    width: 100% !important;
    max-width: 400px !important;
    padding: 1.5rem !important;
}

/* Style the month navigation buttons */
.flatpickr-months {
    margin-bottom: 1rem !important;
}

.flatpickr-month {
    background: transparent !important;
}

.flatpickr-current-month {
    font-size: 1.2rem !important;
    padding: 0.5rem 0 !important;
}

/* Style the weekday headers */
.flatpickr-weekdays {
    background: transparent !important;
    margin-bottom: 0.5rem !important;
}

.flatpickr-weekday {
    color: #97dde8 !important;  
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* Style the calendar days */
.flatpickr-day {
    border-radius: 8px !important;
    margin: 2px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-weight: 500 !important;
}
.flatpickr-day.selected {
    background: #97dde8!important;  
    border-color: #e0e0e0 !important;
    color: white !important;
}
.search-icon {
    color: #666;
    margin-right: 10px;
}

/* Calendar container styles */
.select2-container--default .select2-results__option {
    color: #333;              /* Dark text color for visibility */
    background-color: #f8f8f8; /* Light background for options */
    padding: 6px 12px;        /* Consistent padding */
}

.calendar-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin: 20px 0;
    
}

#calendar {
   
}

.vendor-selector {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  
}


.vendor-selector h3 {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.vendor-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.vendor-select:focus {
    outline: none;
    border-color: #9ac5f1;
    box-shadow: 0 0 0 3px rgba(255, 123, 37, 0.3);
}

.flatpickr-calendar.inline {
    margin: 0 auto !important;
}

/* Enhance the legend appearance */
.legend {
    max-width: 400px;
    margin: 1.5rem auto;
    padding: 1rem 2rem;
}

.legend-item {
    font-weight: 500;
        }
       


/* Container styles for consistent spacing */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-control {
    width: 100%;
    padding: 15px 100px 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.icon-container {
    position: absolute;
    right: 10px;
    display: flex;
    gap: 8px;
}

.icon-button {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #666;
}

.icon-button:hover {
    transform: translateY(-2px);
}

.icon-button.search {
    background: rgba(235, 140, 140, 0.1);
}

.icon-button.search:hover {
    background: #fdbb2d;
    color: white;
}

.icon-button.notif {
    background: rgba(0, 0, 0, 0.1);
}

.icon-button.notif:hover {
    background: #41549e;
    color: white;
}
.notif-active {
    color: #ff7b25;  /* Your orange theme color */
    animation: bell-ring 0.5s ease;
}

.icon-button.clear {
    background: rgba(220, 53, 69, 0.1);
}

.icon-button.clear:hover {
    background: #b21f1f;
    color: white;
}

.icon-button i {
    font-size: 18px;
}

/* Optional: Add animation for icon clicks */
.icon-button:active {
    transform: translateY(0);
}


.text 
{
    text-align: center;
}
.success-message {
    text-align: center;
    background: transparent;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    color: #1e4356;
    margin-bottom: 1rem;
}


