        *
        {
            background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6600' fill-opacity='0.05'%3E%3Ccircle cx='7' cy='7' r='3'/%3E%3C/g%3E%3C/svg%3E") repeat;        
        }
       
       .container {
        
            max-width: 100%;
            margin: 7% auto 0% auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background-color: #e67e22;
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-icon {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
        }

        .header-title {
            font-size: 18px;
            font-weight: 500;
        }

        .main-content {
            flex: 1;
            padding: 20px;
            background-color: white;
        }

        .progress-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            border: 2px solid #e67e22;
            color: #e67e22;
            background-color: white;
            transition: all 0.3s ease;
        }

        .step-circle.active {
            background-color: #e67e22;
            color: white;
        }

        .step-circle.completed {
            background-color: #e67e22;
            color: white;
        }

        .step-circle.inactive {
            background-color: #bdc3c7;
            border-color: #bdc3c7;
            color: white;
        }

        .step-line {
            width: 40px;
            height: 2px;
            background-color: #bdc3c7;
            transition: all 0.3s ease;
        }

        .step-line.completed {
            background-color: #e67e22;
        }

        .step-label {
            font-size: 12px;
            color: #666;
            text-align: center;
            max-width: 80px;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            margin-bottom: 25px;
        }

        .floating-label {
            position: relative;
            margin-bottom: 20px;
        }

        .floating-label input {
            width: 90%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: white;
            transition: border-color 0.3s ease;
        }

        .floating-label input:focus {
            outline: none;
            border-color: #e67e22;
        }

        .floating-label input.error {
            border-color: #e74c3c;
        }

        .floating-label label {
            position: absolute;
            left: 45px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s ease;
            background-color: white;
            padding: 0 5px;
        }

        .floating-label input:focus + label,
        .floating-label input:not(:placeholder-shown) + label {
            top: 0;
            left: 35px;
            font-size: 12px;
            color: #e67e22;
            transform: translateY(-50%);
        }

        .floating-label input:focus.error + label,
        .floating-label input:not(:placeholder-shown).error + label {
            color: #e74c3c;
        }

        .floating-label .field-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            z-index: 1;
        }

        .floating-label input:focus ~ .field-icon {
            color: #e67e22;
        }

        .floating-label input.error ~ .field-icon {
            color: #e74c3c;
        }

        .error-message {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .dropdown-container {
            position: relative;
        }

        .dropdown-button {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            background-color: white;
            text-align: left;
            font-size: 16px;
            cursor: pointer;
            color: #999;
            transition: border-color 0.3s ease;
            position: relative;
        }

        .dropdown-button:focus {
            outline: none;
            border-color: #e67e22;
        }

        .dropdown-button.selected {
            color: #333;
        }

        .dropdown-button::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .dropdown-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            border: 2px solid #ddd;
            border-top: none;
            border-radius: 0 0 8px 8px;
            z-index: 10;
            display: none;
            max-height: 200px;
            overflow-y: auto;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-item {
            padding: 12px 15px 12px 45px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            position: relative;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
        }

        .dropdown-item i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        .upload-area {
            border: 2px dashed #bdc3c7;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fafafa;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .upload-area:hover {
            border-color: #e67e22;
            background-color: #fff5f0;
        }

        .upload-area.dragover {
            border-color: #e67e22;
            background-color: #fff5f0;
        }

        .upload-area.has-image {
            padding: 10px;
            border: 2px solid #27ae60;
            background-color: #f0fff4;
        }

        .upload-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 15px;
            color: #bdc3c7;
        }

        .upload-text {
            color: #666;
            font-size: 16px;
        }

        .image-preview {
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 4px;
        }

        .image-info {
            margin-top: 10px;
            color: #27ae60;
            font-size: 14px;
        }

        .button-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 40px;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .btn-primary {
            background-color: #e67e22;
            color: white;
        }

        .btn-primary:hover {
            background-color: #d35400;
        }

        .btn-secondary {
            background-color: #27ae60;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #229954;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .confirmation-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            color: #666;
            font-size: 14px;
        }

        .confirmation-data {
            margin-bottom: 25px;
        }

        .data-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .data-item:last-child {
            border-bottom: none;
        }

        .data-label {
            font-weight: 500;
            color: #333;
        }

        .data-value {
            color: #666;
            text-align: right;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-confirm {
            background-color: #27ae60;
            color: white;
        }

        .btn-confirm:hover {
            background-color: #229954;
        }

        .btn-cancel {
            background-color: #95a5a6;
            color: white;
        }

        .btn-cancel:hover {
            background-color: #7f8c8d;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .progress-container {
                gap: 10px;
            }
            
            .container {
                margin-top: 20%;
            }
            
            .step-circle {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .step-line {
                width: 20px;
            }
            
            .main-content {
                padding: 15px;
            }

            .modal-content {
                padding: 20px;
            }

            body {
                margin: 0;
                padding: 0;
            }



            .header
            {
                margin-top: 5%;
            }
        }
        
        /* Styles additionnels pour le nouveau formulaire */
/* Styles additionnels pour le nouveau formulaire */

        .info-notice {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border: 1px solid #2196f3;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .info-notice i {
            color: #2196f3;
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .info-notice p {
            margin: 0;
            color: #1976d2;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Styles pour les champs dynamiques */
        .dynamic-field {
            margin-bottom: 20px;
        }

        .dynamic-field .floating-label {
            position: relative;
        }

        .dynamic-field select {
            width: 90%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: white;
            transition: border-color 0.3s ease;
            appearance: none;
            cursor: pointer;
        }

        .dynamic-field select:focus {
            outline: none;
            border-color: #e67e22;
        }

        .dynamic-field textarea {
            width: 90%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: white;
            transition: border-color 0.3s ease;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .dynamic-field textarea:focus {
            outline: none;
            border-color: #e67e22;
        }

        .dynamic-field input[type="number"] {
            width: 90%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: white;
            transition: border-color 0.3s ease;
        }

        .dynamic-field input[type="number"]:focus {
            outline: none;
            border-color: #e67e22;
        }

        /* Labels flottants pour les champs dynamiques */
        .dynamic-field .floating-label label {
            position: absolute;
            left: 45px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s ease;
            background-color: white;
            padding: 0 5px;
        }

        .dynamic-field .floating-label input:focus + label,
        .dynamic-field .floating-label input:not(:placeholder-shown) + label,
        .dynamic-field .floating-label select:focus + label,
        .dynamic-field .floating-label select:valid + label,
        .dynamic-field .floating-label textarea:focus + label,
        .dynamic-field .floating-label textarea:not(:placeholder-shown) + label {
            top: 0;
            left: 35px;
            font-size: 12px;
            color: #e67e22;
            transform: translateY(-50%);
        }

        /* Loading spinner */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-radius: 50%;
            border-top: 3px solid #e67e22;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Success message */
        .success-message {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: 1px solid #27ae60;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            color: #155724;
        }

        .success-message i {
            font-size: 48px;
            color: #27ae60;
            margin-bottom: 15px;
            display: block;
        }

        .success-message h3 {
            margin: 10px 0;
            color: #27ae60;
        }

        .success-message p {
            margin: 5px 0;
            font-size: 14px;
        }

        .code-confirm {
            background: #f8f9fa;
            border: 2px dashed #27ae60;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            text-align: center;
        }

        .code-confirm strong {
            font-size: 24px;
            color: #27ae60;
            letter-spacing: 2px;
            filter: blur(8px);
            -webkit-filter: blur(8px);
        }

        /* Amélioration du dropdown avec informations supplémentaires */
        .dropdown-item small {
            display: block;
            margin-top: 3px;
            font-style: italic;
        }

        /* Style pour les champs obligatoires */
        .required-field::after {
            content: '*';
            color: #e74c3c;
            margin-left: 3px;
        }

        /* Animation pour l'apparition des champs dynamiques */
        .dynamic-fields-container {
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Style pour les alertes */
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            border-radius: 8px;
        }

        .alert-success {
            color: #155724;
            background-color: #d4edda;
            border-color: #c3e6cb;
        }

        .alert-error {
            color: #721c24;
            background-color: #f8d7da;
            border-color: #f5c6cb;
        }

        .alert-info {
            color: #0c5460;
            background-color: #d1ecf1;
            border-color: #bee5eb;
        }

        /* Responsive pour les nouveaux éléments */
        @media (max-width: 768px) {
            .floating-label input {
              width: 80%;
            }
            .info-notice {
                padding: 12px;
                font-size: 13px;
            }
            
            .liens
            {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .dynamic-field select,
            .dynamic-field textarea,
            .dynamic-field input {
                width: 100%;
                padding-left: 40px;
            }
            
            .success-message {
                padding: 15px;
            }
            
            .code-confirm strong {
                font-size: 20px;
            }

           
        }

        a
        {
            text-decoration: none;
        }