/* assets/styles.css */

.background {
    background-color: #262A36;
    height: 100vh;
    margin: 0;
}


html, body {
    height: 100%;
    margin: 0;
    background-color: #262A36; /* Set your desired background color */
}


/* Apply styles to the datepicker box*/
.DateInput_input.DateInput_input_1 {
    border: 2px solid transparent; /* Border color of the input field */
    border-radius: 10px;       /* Rounded corners of the input field */
    background-color: transparent;    /* Background color of the input field */
    padding: 2px;            /* Padding inside the input field */
    font-size: 12px;          /* Font size of the text */
font-weight: bold;
    color: white;              /* Text color */
text-align: center;
font-family: Montserrat
}

/* Target DatePickerSingle's input field */
.DateInput {
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  display: inline-block;
  width: 90px;
  vertical-align: middle
}

.SingleDatePickerInput {
  display: inline-block;
  background-color: transparent
}

.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 0px solid #dbdbdb
}