﻿.time-picker {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    margin: 4px;
}

.time-input {
    width: 90px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
}

.time-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 6px;
    display: none;
    flex-direction: row;
    gap: 4px;
    z-index: 1000;
}

.time-column {
    max-height: 160px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .time-column::-webkit-scrollbar {
        display: none;
    }

.time-option {
    width: 40px;
    padding: 6px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

    .time-option:hover,
    .time-option.active {
        background: #0078ff;
        color: white;
    }
