::-webkit-scrollbar {
    width: 8px;
    display: none;
}

::-webkit-scrollbar-thumb {
    background-color: #4a556873; /* Tailwind's gray-700 */
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #edf2f7; /* Tailwind's gray-100 */
    border-radius: 4px;
}
/* Optional: Custom styling for dropdown */
.custom-select {
position: relative;
width: 100%;
}
.custom-select select {
width: 100%;
padding: 0.5rem;
border-radius: 0.375rem;
border: 1px solid #e5e7eb;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
width: 100%;
border: 1px solid #e5e7eb;
border-radius: 0.375rem;
background-color: #ffffff;
z-index: 10;
max-height: 200px;
overflow-y: auto;
display: none;
}

.dropdown-menu.visible {
display: block;
}
.dropdown-menu li {
padding: 0.5rem;
cursor: pointer;
color: black;
}
.dropdown-menu li:hover {
background-color: #f3f4f6;
}

.calendar-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
  }
  
  .calendar-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .calendar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: absolute;
    z-index: 1;
    display: none;
  }
  
  .header {
    background-color: #96BF1F;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .prevBtn,
  .nextBtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  .monthYear {
    font-size: 18px;
    font-weight: bold;
  }
  
  .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
  }
  
  .day {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .day.current {
    border:2px solid #96BF1F;
  }
  
  .day.selected {
    background-color: #96BF1F;
    color: white;
  }
  
  .dateInput {
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    font-weight: 700;
  }

.form-control{
	height: 50px;
	font-size: 16px;
	color: #414D64;
	background: #ffffff;
	padding: 0 15px;
	border: 2px solid #DADEEA;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-align: center;
}
textarea.form-control{
	height: 120px;
	padding-top: 15px;
}
.form-control-plaintext{
	font-size: 18px;
	color: #434343;
}
button.form-control{
	text-overflow: ellipsis;
	overflow: hidden;
}
.form-control:focus{
	border-color: #37B448;
	-webkit-box-shadow: 0px 2px 6px rgba(55, 180, 72, .15);
	-moz-box-shadow: 0px 2px 6px rgba(55, 180, 72, .15);
	box-shadow: 0px 2px 6px rgba(55, 180, 72, .15);
}
.form-control.td-input:disabled, .form-control.td-input[readonly] {
    background-color: #ffffff;
    opacity: 1;
		color: #414D64;
}

.col-form-label{
	white-space: nowrap;
	min-width: 100px;
	margin-bottom: 10px;
	font-weight: 500;
	padding: 0;
	font-size: 18px;
}