﻿
.right-icons {
    display: flex;
    gap: 12px;
}

.options-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
}

    /* Modern scrollbar */
    .options-grid::-webkit-scrollbar {
        width: 8px;
    }

    .options-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .options-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #4a7cff, #1e3c72);
        border-radius: 4px;
        transition: background 0.3s ease;
    }

        .options-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #5a8cff, #25448a);
        }

.option-card {
    background: #2a4a7c;
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 458px;
    min-width: 180px;
    width: -webkit-fill-available;
    height: 65px;
}

    .option-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .option-card.selected {
        background: linear-gradient(135deg, #3d5a8f, #274172);
        box-shadow: 0 0 15px rgba(58, 104, 196, 0.6);
    }

.option-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.check-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .check-circle::before {
        content: '✓';
        color: var(--color-blue);
        font-size: 19px;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.option-card.selected .check-circle::before {
    opacity: 1;
}

.user-icon {
    width: 45px;
    height: 45px;
}

.option-text {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.pre-regtype-text {
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    vertical-align: middle;

}

.next-reg-btn {
    background: white !important;
    color: var(--color-navy) !important;
    font-weight: normal !important;
}

@media (max-width: 480px) {
    .options-grid {
        gap: 12px;
    }

    .option-card {
        padding: 12px 16px;
    }
}
