#map{
    height: 100%;
}
.leaflet-container {
    background: rgb(33, 37, 41);
}
body, html {
    overflow: hidden; /* Disable scrolling */
    height: 100%;
    font-family: 'Open Sans'; /* Use Open Sans as the default font */

}
/* Ensure the parent container has 100% width and specific height */
.canvas-container {
    width: 100% !important; 
    height: 100% !important; /* Set a specific height for the canvas container */
    position: relative;

}
.tooltip-inner {
    text-align: left !important;
}

/* Ensure the canvas fills the entire parent container */
#canvas {
    background-color: #3a3a3b;
}
#buttons {
    margin-top: 10px;
    text-align: center;
    background-color: #562952;
    flex: 0 0 10%;
}
#title {
    margin-top: 10px;
    text-align: center;
    background-color: #562952;
    border-bottom-left-radius: 50px;
    flex: 0 0 10%;
    padding: 0;
    margin: 0;
    position: relative;

}
#usage-info {
    position: absolute !important;
    top: 12px;
    right: 15px;
    padding: 5px;
    width: 28px;
    height: 28px;
    color: white;
    cursor: pointer; /* Change cursor to pointer on hover */
}

.user-icon-link-top {
    position: absolute;
    bottom: 0px;
    right: 10px;
    padding: 5px;
    cursor: pointer; /* Cambia el cursor a puntero al pasar el mouse */
}

/* Estilos compartidos para iconos */
.icon-help, .user-icon, .fa-user-secret, .fa-user-circle {
    color: white;
    font-size: 20px;
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-help:hover, .user-icon:hover, .fa-user-secret:hover, .fa-user-circle:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.anon-notice {
    font-size: 10px;
    color: #aaa;
    text-align: center;
    padding: 4px 8px;
    line-height: 1.4;
    background-color: rgba(86, 41, 82, 0.4);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.anon-notice a {
    color: #7eb8f7;
    text-decoration: underline;
}

/* Posicionamiento del icono de ayuda */
#photo-info{
    cursor: pointer;
}
#photo-info-content{
    margin: 1em;
    padding: 0.5em;
    border: 1px solid #562952;
    border-radius: 5px;
    color: #562952;
    margin-bottom: 1.5em !important;
}
.logo {
    display: block;
    width: 60%; /* 60% of the parent div's width */
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
}
#photo-info-text{
    text-align: center;
}
.col-md-2 {
    height: 100%; /* Ensure parent container has a defined height */
}

#coordinates {
    flex: 1 1 auto !important;
    max-height: 80%;
    overflow-y: auto;
}
.tools {
    background-color: #fef7ff;
    border-right: 1px solid #e9ecef;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.column-photo {
    height: 100% !important;
}

ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0 !important; /* Remove default padding */
}

li{
    display: inline-block; /* Make it behave like an inline element */
    padding: 10px 10px; /* Add padding to simulate button shape */
    width: calc(100% - 2em); /* Subtracting the margins from the width */
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 0.5em;
    background-color: #aa90a9; /* Button color (Bootstrap's primary color) */
    color: #e9f990; /* Text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor to indicate it's clickable */
    font-size: 16px;
    text-align: left;
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

li.completed {
    background-color: #563952; /* Darker color on hover */
}

.opacity-slider-container {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.fa-icon-marker {
    color: #e9f990; /* Customize the color of the icon */
    font-size: 16px; /* Adjust the font size to fit the icon */
}
.fa-location-dot{
    color: #e9f990; /* Customize the color of the icon */
    font-size: 16px; /* Adjust the font size to fit the icon */
}
.white {
    color: white !important;
}
#button-container{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#Try{
    border-radius: 1em;
    font-size: 14px;
    color: #fff;
    background-color: #562952;
    border: 1px solid #562952;
    font-weight: medium;
}
#Try:hover{
    background-color: #fef7ff;
    border: 1px solid #562952;
    color: #562952;
    /* Change the pointer to a hand */
    cursor: pointer !important;
}   

#Submit.disabled{
    border-radius: 1em;
    font-size: 14px;
    background-color: #fef7ff;
    border: 1px solid #aa90a9;
    color: #aa90a9;
    font-weight: medium;
}
#Submit{
    border-radius: 1em;
    font-size: 14px;
    background-color: #fef7ff;
    border: 1px solid #11ac7a;
    color: #11ac7a;
    font-weight: medium;
}
#Submit:hover{
    background-color: #11ac7a;
    border: 1px solid #11ac7a;
    color: #fff;
    /* Change the pointer to a hand */
    cursor: pointer !important;
}

#Skip{
    border-radius: 1em;
    font-size: 14px;
    background-color: #fef7ff;
    border: 1px solid #f13140;
    color: #f13140;
    font-weight: medium;
}

#Skip:hover{
    background-color: #f13140;
    border: 1px solid #f13140;
    color: #fff;
    /* Change the pointer to a hand */
    cursor: pointer !important;
}

#small-logos-container {
    margin-top: 1em;
    display: flex;
    align-items: center;
    text-align: center;
}

.small-logos {
    max-width: 40%; /* Adjust as needed */
    margin: 0 auto !important; /* Center the logos */
}
.developed {
    color: #333;
    font-size: 10px;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
}
.developed:hover{
    color: #000;
}
.black{
    background-color: #000 !important;
    border-radius: 1em;
    padding: 0.2em;
    font-size: 0.7em;
}
.map-icon{
    text-align: center;
    line-height: 0.8;
}
#map, #canvas {
    /* Pointer */
    cursor: default !important;
}
#map:active {
    /* Pointer */
    cursor: grabbing !important;
}
#social-media {

    display: flex;
    margin-top: 0.5em;
    text-align: center;
}

.social-media-content{
    margin: auto !important;
    text-align: center !important;
}
a.social {
    text-decoration: none;
    font-size: 1.5em !important;
    margin: auto;
}


