.time-selector {
    width: 100%;
    max-width: 28rem;
    margin: 2rem auto 0;
}

.time-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.time-icon {
    width: 1rem;
    height: 1rem;
    color: #059669;
}

.time-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5f9f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.625rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(31, 41, 55, 0.9);
    cursor: pointer;
    background: rgba(15, 23, 42, 0.9);
}

.time-slot.selected {
    background: #22c55e;
    border-color: #22c55e;
    color: #020617;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.time-slot:not(.selected) {
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(31, 41, 55, 0.9);
}

.time-slot:not(.selected):hover {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.6);
}