/*

.part-content {
    background-color: mintcream;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card {
    max-width: 80em;
    flex-direction: row;
    background-color: #696969;
    border: 0;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
    margin: 3em auto;
  }
  .card.dark {
    color: #fff;
  }
  .card.card.bg-light-subtle .card-title {
    color: dimgrey;
  }
  
  .card img {
    max-width: 25%;
    margin: auto;
    padding: 0.5em;
    border-radius: 0.7em;
  }
  .card-body {
    display: flex;
    justify-content: space-between;
  }
  .text-section {
    width: 60%;
    max-width: 80%;
  }
  .cta-section {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  .cta-section .btn {
    padding: 0.1em 0.1em;
    # color: #696969;
  }
  .card.bg-light-subtle .cta-section .btn {
    background-color: #898989;
    border-color: #898989;
  }
  @media screen and (max-width: 475px) {
    .card {
      font-size: 0.9em;
    }
  }

  ul .card-text {
    display: flex;
  }

  ul .card-text li {
    margin-right: 5px;
  }
  */

  .filter-border {
    background-color: #e9e9e9;
    border: 1px solid #d6d6d6; 
    border-radius: 5px; 
    padding: 1rem;

    margin-top: 1rem;
  }

  .dashboard-border {
    background-color: #e9e9e9;
    border: 1px solid #b6b6b6; 
    border-radius: 5px; 
    padding: 1rem;

    margin: 1rem;
  }

  /* Custom styling for the datepicker */
  .datepicker {
    width: 300px;
    /* Set your desired width */
  }

  .datepicker-dropdown {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Add shadow */
  }

  .datepicker table {
    width: 100%;
    /* Make table width 100% */
    border-collapse: collapse;
  }

  .datepicker th,
  .datepicker td {
    padding: 5px;
    text-align: center;
    border: 1px solid #ddd;
    /* Add border */
  }

  .datepicker th {
    background-color: #f5f5f5;
    /* Header background color */
  }

  .datepicker td {
    cursor: pointer;
  }

  .datepicker-dropdown.datepicker-orient-top:before {
    border-bottom-color: #f5f5f5;
    /* Adjust arrow color */
  }
  
.datepicker[readonly] {
     background-color: white !important;
}
#MaintenanceStartDate[readonly] {
     background-color: white !important;
}