body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

::selection {
	color: #FFF;
	background-color: #000;
}

.container {
    max-width: 90%;
	min-width: 300px;
    padding: 20px;
	margin-bottom:50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-scrollable {
    max-width: 90%;
    max-height: 75%; /* Change this value to whatever you need */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

p a {
	color: #2C40A5;
	text-decoration: underline;
}
p a:hover {
	color: #000;
	text-decoration: underline;
}

.legal {
    margin-top: 1em;
	color: #999;
	text-align: center;
}
.legal p {
	font-size: .75em;
}

.legal a {
	color: #2C40A5;
	text-decoration: none;
}
.legal a:hover {
	color: #000;
	text-decoration: underline;
}

.small {
	font-size: 75%;
}

h2 {
    text-align: center;
    color: #999; /* Green */
}

form {
    margin-top: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #2F6647; /* Green */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #265139; /* Darker Green */
}

#message {
    padding-top: 1em;
    text-align: center;
    color: red;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 10px 20px;
	font-size: 14px;
	text-align: center;
	display: block; /* Initially hidden */
}


.cookie-banner p {
	margin: 0;
}

.cookie-banner a {
	color: #fff;
	text-decoration: underline;
}

.cookie-show {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #333;
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	cursor: pointer;
	display:none;
}


.language-selector {
    position: relative;
    font-family: Arial, sans-serif;
    bottom: 10px; /* Initial position for mobile */
    right: 10px; /* Initial position for mobile */
	margin-top: 1em;
}

@media (min-width: 768px) {
    .language-selector {
        position: absolute;
        bottom: auto; /* Reset bottom value */
        right: auto; /* Reset right value */
        top: 10px; /* Position on the top */
        left: calc(100% - 220px); /* Adjust left position */
    }
}

.language-selector select {
    padding: 8px 40px 8px 10px;
    border: 1px solid #000;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    outline: none;
}

.language-selector select::-ms-expand {
    display: none;
}

.language-selector::after {
    content: "\25BC";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.language-selector select:hover +::after {
    color: #333;
}

.language-selector select:focus +::after {
    color: #333;
}