/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: #ffffff;
}

.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
    color: #333333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.btn {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0056b3;
}

.alert {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 40px; /* Add space for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #6c757d; /* Neutral color */
    font-size: 18px;
}

.toggle-password:hover {
    color: #000000; /* Darker color on hover */
}


#map-years-mapael .map-controls{
    border-top:1px solid #474d84
}
#map-years-mapael .map-controls .nav-item .nav-link{
    background-color:#040620;
    color:rgba(244,244,245,0.9)
}
#map-years-mapael .map-controls .nav-item .nav-link:hover{
    background:#474d84;
    color:rgba(244,244,245,0.9)
}
#map-years-mapael .map-controls .active{
    font-weight:700;
    background:#474d84
}
#map-years-mapael .map-controls .active .nav-link{
    background:#474d84
}
.mapael{
    position:relative;
    margin:-20px -20px 0
}
.mapael .map{
    position:relative
}
.mapael .stats{
    position:absolute;
    z-index:1;
    top:0;
    left:0;
    margin:5% 10%;
    color:rgba(244,244,245,0.901961)
}

#country-map-container {
    height: 441px;
    width: 498px;
    border: 1px solid #ccc;
    margin: 0 auto;
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: relative;
    overflow: hidden; /* Prevent overflow */
}

#country-map-container .map {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex; /* Flexbox for map content */
    justify-content: center;
    align-items: center;
}

#country-map-container .map svg {
    max-width: 100%; /* Scale proportionally */
    max-height: 100%; /* Scale proportionally */
    display: block;
}
