.DateInput_input, .DateInput_input_1 {
    Height: 10px;

}

.divBorder{
    border: 2px solid black;
   }

.container {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.fa-chevron-down {
    color: blue;
}

.fa-chevron-up {
    color: blue;
}


.dropdown-content {
    display: none;
    padding: 8px;
    border: 1px solid #ddd;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.Select-menu-outer {
    display: block !important;
  }

/* Define styles for expanded rows */
.expanded {
    font-weight: bold; /* Bold text */
    z-index: 1;
    border: 2px solid black;
    background-color: red;
    transform: scaleY(1.2); /* Increase the scale (1.1 means 110% size) */
    transition: transform 0.3s ease; /* Apply a smooth scaling transition */
}

/* restyle radio items */
.radio-group .form-check {
    padding-left: 0;
  }
  
  .radio-group .btn-group > .form-check:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .radio-group .btn-group > .form-check:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
    padding: 6px 6px;
  }

  /* style graphs in widgets */
.center-align {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-align {
    display: block;
}

.table-container {
    display: flex; 
    justify-content: center;
    align-items: flex-start;
}