/* Date Picker Container */
.datepicker-container {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 400px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    width: 100%;
    background-color: #f9f9f9;
  }
  
  .datepicker-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
  }
  
  .datepicker-header .prev, .datepicker-header .next {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
  }
  
  .datepicker-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .datepicker-table th,
  .datepicker-table td {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ddd;
    width: 30px;
  }
  
  .datepicker-table th {
    background-color: #f5f5f5;
    color: #555;
  }
  
  .datepicker-table td:hover {
    background-color: #e0e0e0;
  }
  
  .datepicker-table td.selected {
    color: white;
    font-weight: bold;
  }
  
  .datepicker-table td.disabled {
    background-color: #f0f0f0;
    color: #ccc;
    pointer-events: none;
  }
  
  /* Horizontal Layout for DOB Input Fields */
  .dob-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    /* justify-content: space-between; */
    align-items: center;
    margin-top: 17px;
  }

  .dob-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30%;
  }

  .dob-label {
    font-size: 14px;
    color: #333;
  }

  .dob-select,
  .dob-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
  }

  .dob-input:focus,
  .dob-select:focus {
    outline: none;
  }

  /* Error Message Styling */
  .dob-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
  }

  .dob-input,
  .dob-select {
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }

  .dob-item .dob-input {
    transition: all 0.3s ease;
  }
