
/* Réinitialisation de base */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    overflow: hidden;
}

.index-container {
    /* background-image: url('/dependancesVisuel/BackgroundImages/page_d_accueil.jpg');  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.suggestions-list-pays {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: white;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
    max-height: 150px;
    overflow-y: auto;
    width: 150px;
    z-index: 1000;
}

.suggestions-list-pays li {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.suggestions-list-pays li:hover {
    background-color: #f0f0f0;
}

/*  .login-message {
    font-size: 1.2em;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   
 } */

.login-message {
    font-size: 1.2em;
    color: #adb5bd;
    font-weight: bold;
    
}     
   /* Wrapper pour centrer le contenu principal SOUS la topbar */
.central-content-wrapper {
    position: absolute;
    top: 90px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Cadre principal au centre */
.home-main-layout-container {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Section gauche avec logo */
.left-section {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-section .logo-center img {
    max-width: 250px;
    height: auto;
    margin-bottom: -15px /*20px;*/
}

/* Section droite avec champs et boutons */
.right-section {
    flex: 3; /* Plus large que la partie gauche */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-section .input-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 90%;
}

/* .right-section .input-field {
    padding: 20px !important;
    width: 200px;
    border-radius: 10px;
    border: 2px solid #a4a4a4;
    font-size: 1em;
} */

.right-section .input-field {
    border-radius: 10px;
    border: 2px solid #a4a4a4;
    font-size: 1em;
}
.right-section .input-field:focus {
    border-color: #c00000; /* Red border on focus */
    outline: none; /* Remove default outline */
}


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

/* Style des boutons */
.btn-action{
    background-color: transparent;
    border: 2px solid #a4a4a4;
    color: #c00000;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    text-align: center;
    display: inline-block;
}

.btn-action:hover:hover {
    background-color: #c00000;
    color: white !important;
    transform: translateY(-3px);
    text-decoration:none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-main-layout-container {
        flex-direction: column;
        padding: 30px;
    }
    .input-container {
        flex-direction: column;
    }
    .right-section .input-container {
        flex-direction: column; /* Empile les groupes input/suggestions verticalement */
        gap: 10px;
    }
    .input-with-suggestions {
        min-width: unset; /* Annule la largeur minimale fixe pour s'adapter */
        width: 100%; /* Prend toute la largeur disponible */
    }
}









