/* interview_select.css */

.interview-wrapper {
    max-width: 500px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--background-secondary);
    border-radius: 12px;
    text-align: center;
}

.option-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 30px;
}

.option-button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.option-button:hover {
    background-color: #3367d6;
}

.option-button.disabled {
    background-color: #555;
    cursor: not-allowed;
    opacity: 0.5;
}
.soon-label {
    font-size: 0.8em;
    color: #aaa;
    margin-left: 6px;
}