/* DateTimePicker.css */

.date-time-picker-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .picker-wrapper {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  /* Calendar Icon Styles */
  .calendar-icon {
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
    color: #4CAF50; /* Icon color */
    transition: color 0.3s ease;
  }
  
  .calendar-icon:hover {
    color: #388E3C; /* Hover effect for the icon */
  }
  
  /* Style for the DatePicker input */
  .date-picker-input {
    padding: 8px 12px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 220px;  /* Input width */
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }
  
  /* Hover effect on the input */
  .date-picker-input:hover {
    border-color: #888;
  }
  
  /* Focus effect on the input */
  .date-picker-input:focus {
    border-color: #4CAF50;
    outline: none;
  }
  