button:disabled {
    pointer-events: none; 
	pointer: not-allowed;
    opacity: 0.5;           
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    text-align: center;
}
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 2em;
    margin-bottom: 20px;
}
button {
    /*width: 100%;*/
    padding: 10px;
    margin-bottom: 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #218838;
}
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    h1 {
        font-size: 1.5em;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 0;
}
.navbar-custom {
    background-color: #D3D3D3;
    position: relative;  /* Ensures the navbar is the reference for absolute positioning */
}
.navbar-brand {
    color: white;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}
.navbar-custom .navbar-nav .nav-link {
    color: #1E90FF;
}
.navbar-custom .navbar-nav .nav-link:hover {
    color: #0000CD;
}
.main-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}
.container {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: -100px;
    
    position: relative;
}
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #D3D3D3;
    color: #191970;
    margin-top: 20px;
}
/* Responsive design adjustments */
@media (max-width: 768px) {
    #languageSelector {
        position: static; /* Reset position for mobile */
        margin-top: 16px; /* Some space from other menu items */
        width: 100%; /* Full width within the nav */
        text-align: center; /* Center the select within the block */
    }
}
@media (min-width: 769px) {
    #languageSelector {
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto; /* Auto width on larger screens */
    }
}

.dropbtn {

color: white;
padding: 16px;
font-size: 16px;
border: none;
}

.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-image: bi-flag;}
    