/* CONTAINER */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20%;
    max-height: 600px;
    overflow: auto;
}

/* STEPS */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* INPUTS */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.next {
    background: #2d7cf6;
    color: white;
}

.prev {
    background: #ccc;
}

.submit {
    background: #ff7a00;
    color: white;
}

/* PROGRESS BAR */
.progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.progress div {
    width: 30%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
}

.progress .active {
    background: #2d7cf6;
}


/*Custom select*/


        /* Conteneur principal du select personnalisé */
        .custom-select {
            position: relative;
            width: 100%;
        }

        /* Champ de recherche/select */
        .select-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            outline: none;
            transition: all 0.3s ease;
            background: white;
            cursor: pointer;
        }

        .select-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        /* Liste déroulante */
        .select-dropdown {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            max-height: 250px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .select-dropdown.show {
            display: block;
        }

        /* Options */
        .select-option {
            padding: 12px 16px;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 14px;
        }

        .select-option:hover {
            background: #f5f5f5;
        }

        .select-option.selected {
            background: #667eea;
            color: white;
        }

        .select-option.hidden {
            display: none;
        }

        /* Message "aucun résultat" */
        .no-results {
            padding: 12px 16px;
            color: #999;
            text-align: center;
            font-style: italic;
        }

        /* Flèche indicative */
        .select-wrapper {
            position: relative;
        }

        .arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #999;
            font-size: 12px;
        }

        /* Scrollbar personnalisée */
        .select-dropdown::-webkit-scrollbar {
            width: 8px;
        }

        .select-dropdown::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .select-dropdown::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .select-dropdown::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Label et valeur sélectionnée */
        .selected-value {
            margin-top: 15px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 6px;
            font-size: 14px;
            color: #666;
            text-align: center;
        }

        .selected-value span {
            color: #667eea;
            font-weight: 600;
        }