.duration-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.duration-option {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--container-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option.selected,
.duration-option:hover {
    background-color: var(--first-color);
    border-color: var(--first-color);
    color: var(--white-color);
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--container-color);
    color: var(--text-color);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.time-slot.selected,
.time-slot:hover {
    background-color: var(--first-color);
    border-color: var(--first-color);
    color: var(--white-color);
}

.custom-time-note {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
}

.custom-time-note a {
    color: var(--first-color);
    text-decoration: underline;
}