  body { background-color: #f5f5dc; font-family: Arial, sans-serif; }
  .container { margin-top: 50px; max-width: 600px; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); }
  .form-title { color: #8b4513; font-weight: bold; text-align: center; margin-bottom: 20px; }

  /* Navbar and Sidebar Styling */
  .navbar { background-color: #8b4513; }
  .navbar .navbar-brand, .navbar .nav-link {
    color: #f5f5dc !important;
  }
  .navbar .nav-link:hover, .navbar .nav-link .active {
    color: #d2691e !important;
  }

  .navbar-nav .active{
    color: #d2691e !important;
  }

  .sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8b4513;
    color: #f5f5dc;
    padding: 15px;
    z-index: 1050;
    transition: transform 0.3s ease;
  }
  .sidebar.show {
    display: block;
  }
  .sidebar h4 {
    margin-bottom: 20px;
  }
  .sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #f5f5dc;
    font-size: 1.5em;
  }
  .sidebar a {
    color: #f5f5dc;
    padding: 5px;
    text-decoration: none;
    margin: 8px;
    float: left;
  }
  .sidebar a:hover {
    color: #d2691e;
  }
  .sidebar .active{
    color: #d2691e;
  }

  /* Styling for Date and Time Section */
  .date-time-container {
    border: 1px solid #8b4513;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    position: relative;
  }
  .date-time-title {
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: #f5f5dc;
    color: #8b4513;
    font-weight: bold;
    padding: 0 10px;
  }
  .set-soonest-btn {
    position: absolute;
    top: -12px;
    right: 15px;
    background-color: green;
    color: white;
    font-weight: bold;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
  }

  /* Responsive adjustments */
  @media (max-width: 576px) {
    .container {
      padding: 15px;
    }
    .form-title {
      font-size: 1.5em;
    }
    .date-time-container {
      padding: 15px;
    }
    .set-soonest-btn {
      font-size: 0.9em;
      padding: 5px 8px;
      top: -15px;
      right: 10px;
    }
    .date-time-title {
      font-size: 0.9em;
      top: -15px;
      left: 10px;
    }
    .sidebar {
      width: 100%;
    }
  }


/*alert wendows */


/*.alert-window {
    position: fixed;
    text-align:center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.alert-window p {
    margin: 0;
}

.alert-window a {
    color: #721c24;
    font-weight: bold;
}

.alert-window .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #721c24;
}*/