@charset "utf-8";
.time-search-box {
    padding: 18px;
}

.time-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 240px));
    gap: 16px;
    align-items: end;
}

.time-search-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-search-row label {
    font-size: 14px;
    font-weight: 700;
    color: #2b3a4a;
}

.time-search-select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #c8d4e3;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    line-height: 1.4;
    color: #222;
    box-sizing: border-box;
}

.time-search-select:focus {
    outline: none;
    border-color: #4c8bf5;
    box-shadow: 0 0 0 3px rgba(76, 139, 245, 0.15);
}

.time-search-box .small-note {
    margin-top: 12px;
    font-size: 13px;
    color: #5b6775;
}

.search-btn {
    background: #cbd5e1;
    cursor: not-allowed;
}

.search-btn.is-active {
    background: #1f3c88;
    cursor: pointer;
}

.search-btn.is-active:hover {
    background: #162f6b;
}

@media (max-width: 767px) {
    .time-search-grid {
        grid-template-columns: 1fr;
    }
}