html {
  height: 100%;
  width: 100%;
}

/* Styles pour l'autocomplétion des conventions collectives */
.convention-search-container {
    position: relative;
}

.convention-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.convention-suggestion {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.3;
}

.convention-suggestion:hover,
.convention-suggestion.active {
    background-color: #f8f9fa;
}

.convention-suggestion:last-child {
    border-bottom: none;
}

.convention-search-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Assurer que tous les champs d'entrée ont la largeur complète */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea {
    width: 100%;
    box-sizing: border-box;
}

.convention-search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Styles pour l'autocomplétion des pays */
.pays-search-container {
    position: relative;
}

.pays-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pays-suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.pays-suggestion:hover,
.pays-suggestion.active {
    background-color: #f8f9fa;
}

.pays-suggestion:last-child {
    border-bottom: none;
}

.pays-search-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.pays-search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Styles pour l'autocomplétion d'adresse */
.adresse-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.adresse-suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.adresse-suggestion:hover {
    background-color: #f8f9fa;
}

.adresse-suggestion:last-child {
    border-bottom: none;
}

.form-group {
            margin-bottom: 20px;
            clear: both;
        }

        .form-group:last-child {
            margin-bottom: 0;
        }