.dropdown-toggle {
  background-color: transparent;
  border-color: transparent;
  color: #004aad;
}

.white-button {
  color: white;
  background-color: transparent;
  border-color: transparent;
}
.dropdown-menu {
  border-color: transparent;
}
.card {
  float: left;
  margin-left: 20%;
  width: 60%;
  margin-bottom: 16px;
  padding: 0 8px;
  background-color: #007dc6;
}
.button-color {
  color: #004aad;
  background-color: white;
  font-weight: bolder;
  text-align: left;
  border-color: transparent;
}
.card-header {
  color: white;
}
.cases-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case-item {
  background-color: lightblue;
  margin: 10px;
  padding: 15px;
  width: calc(20%); /* Adjusted width */
  box-sizing: border-box;
}
.case-item h2 {
  color: white;
}
/* footer*/
.footer {
  background-color: #004aad;
  color: white;
  border-radius: 4px;
}
.footer.footer-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer .footer-links a {
  color: white;
  text-decoration: none;
}
.footer-container .footer-info {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.footer-container .footer-info span {
  font-weight: bold;
  margin-left: 4px;
}

/*styling for calender*/
.calendar-container {
  display: flex;
  flex-wrap: wrap;
}
.calendar-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.calendar-current-date {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.calendar-dates {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.calendar-dates li {
  width: 25%; /* Four months per row */
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
}

.calendar-dates li.active {
  background-color: lightblue;
}

.calendar-dates li.inactive {
  color: #ccc;
}

.button {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}

.indented-label {
  padding-left: 25%; /* Adjust value as needed */
}
.title-container {
  margin-bottom: 20px; /* Add a gap between titles */
  padding: 10px;
  border-radius: 10px;
}

.title {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 10px;
}
body {
  /*background: #f3f1f2;*/
  font-family: sans-serif;
}

#root {
  margin: 1rem 4rem;
}

#root .ql-container {
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  background: #fefcfc;
}

/* Snow Theme */
#root .ql-snow.ql-toolbar {
  display: block;
  background: #eaecec;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

#root .ql-editor {
  min-height: 18em;
}
.account-field {
  position: relative;
}

select {
  width: 20%;
  /* Other styles */
}

.data-table-container {
  position: relative;
  height: 400px;
  width: 100%;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.add-button,
.edit-button,
.delete-button {
  padding: 8px 16px;
  margin-right: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.add-button:hover,
.edit-button:hover,
.delete-button:hover {
  background-color: #45a049;
}

.actions-container {
  position: absolute;
  top: 0;
  right: 10px;
  display: flex;
}

.actions-container button {
  margin-left: 5px;
}
.customDatePicker {
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
}

.customCalendar {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
