/* Extracted from resources/views/layouts/main.blade.php */

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.bronze {
    background-color: #cd7f32;
}

.silver {
    background-color: #c0c0c0;
}

.gold {
    background-color: #ffd700;
}

.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, #cd7f32 50%, #ddd 50%);
    z-index: -1;
}

.hero-modal-content {
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

.hero-overlay .btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 12px;
    border-radius: 22px;
    background-color: #ffffff;
    color: #151515;
    font-weight: 650;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.modal-content {
    border-radius: 16px;
    padding: 1.5rem;
}

.question label {
    font-size: 1.1rem;
    font-weight: 600;
}

.selectable-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}

.selectable-option {
    background: #f1f1f1;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.selectable-option:hover {
    background: #e0e0e0;
}

.selectable-option.selected {
    background: #3a3a3a;
    border-color: #978661;
    color: #fff;
}

.btn {
    border-radius: 50px;
    padding: 12px 24px;
    color: #978661;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }

    .hero-modal-content {
        height: 55vh;
    }

    .hero-overlay {
        width: 90%;
    }
}

.btn-secondary {
    color: white !important;
}
