﻿
.select-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

.select-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.app-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0px !important;
}

.select-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.select-card {
    background: #f8fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    padding: 28px 20px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .select-card h2 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #34495e;
    }

    .select-card p {
        font-size: 1rem;
        color: #6c7a89;
        margin-bottom: 20px;
    }

    .select-card .btn {
        min-width: 140px;
        font-size: 1.2rem;
        padding: 12px 12px;
        border-radius: 6px;
        width:100%;
    }
