#roleSelectWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 24px;
}

#roleSelectCard {
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 48px 56px;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

#roleSelectTitle {
    font-size: 22px;
    font-weight: normal;
    color: #777;
    margin: 0 0 8px;
}

#roleSelectSubtitle {
    font-size: 34px;
    margin: 0 0 32px;
}

#roleButtons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.role-button {
    display: block;
    padding: 18px 24px;
    font-size: 22px;
    text-decoration: none;
    color: #333;
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 12px;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.role-button:hover {
    background-color: #eee;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
