﻿.time-picker-container {
    position: relative;
}

.time-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

    .time-dropdown.show {
        display: flex;
        z-index: 1;
    }

.time-hour-container,
.time-minute-container,
.time-period-container {
    margin: 5px;
}

.time-confirm {
    min-height: 100px;
}

.time-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .time-dropdown ul::-webkit-scrollbar {
        width: 2px;
    }

    .time-dropdown ul.time-period-list::-webkit-scrollbar {
        display: none;
    }

.time-dropdown li {
    width: 55px;
    padding: 5px;
    cursor: pointer;
    text-align: center;
}

    .time-dropdown li:hover {
        background: #ddd;
    }

    .time-dropdown li.selected {
        background: #007bff;
        color: white;
        font-weight: bold;
    }

.time-picker-container .toggleTime {
    position: absolute;
    max-width: 22px !important;
    font-size: 18px;
    right: 5px;
    top: 10px;
}
