
.time-picker-wrapper {
    position: relative;
    display: inline;
}

.time-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5715;
    color: #262626;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    transition: all 0.3s;
    outline: none;
    cursor: pointer;
}

.time-input:hover {
    border-color: #40a9ff;
}

.time-input:focus {
    border-color: #40a9ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.time-picker-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 4px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    display: none;
    overflow: hidden;
}

.time-picker-panel.show {
    display: block;
}

.time-picker-header {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 14px;
    color: #262626;
    font-weight: 500;
}

.time-picker-content {
    display: flex;
    height: 200px;
}

.time-column {
    flex: 1;
    overflow-y: auto;
    border-right: 1px solid #f0f0f0;
}

.time-column:last-child {
    border-right: none;
}

.time-option {
    padding: 8px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #262626;
}

.time-option:hover {
    background-color: #f5f5f5;
}

.time-option.selected {
    background-color: #e6f7ff;
    color: #1890ff;
    font-weight: 500;
}

.time-picker-footer {
    padding: 8px 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}