.timepicker-container {
    /* position: relative;
    display: inline-block; */
    width: 98%;
}
.time-picker-input {
    padding: 10px 10px 10px 50px;
    width: 100%;
    border: 1px solid #ccc; 
    /* border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important; */
    cursor: pointer;
}
.time-picker-input:focus-visible {
    outline:none !important; /* Custom outline */
}

.timepicker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
}
.timepicker-dropdown .dropdown-section {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    width: 100%;
    overflow-y: auto;
    /* margin-right: 10px; */
}
.timepicker-dropdown .dropdown-section label {
    padding: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: var(--font-medium);
}
.timepicker-dropdown .dropdown-section label:hover,
.timepicker-dropdown .dropdown-section label.selected {
    background: var(--orange);
    color: #fff;
    border-radius: 5px;
}
.timepicker-dropdown .dropdown-section::-webkit-scrollbar {
    width: 6px;
}
.timepicker-dropdown .dropdown-section::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.dropdown-container {
    display: flex;
}
