/* Modal and Form */
.form .top-bar, .form .bottom-bar {
    background-color: var(--form-bg-color) !important;
    color: var(--form-text-color) !important;
}

#userProfileForm {
    padding: 0.01em 2px;
}

.form_container {
    padding: 6px 2px;
}

.form_container button {
    margin-top: 4px;
}

#userProfile_Sexo {
    background-color: #ffffff;
    color: "#000000";
}

@media screen and (min-width: 600px) {
    #userProfileForm { padding: 0.01em 16px; }
    .form_container { padding: 16px; }
}
@media screen and (min-width: 1000px) {
}

/* Map and Map Buttons */
#profileMap_container {
    position: relative;
    height: 300px;
}
@media screen and (min-width: 600px) {
    #profileMap_container { height: 500px; }
}

.userName-button, .map-button {
    width: 100%;
    padding: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-align: start;
}

.map-button.active {
    background-color: #ff0000;
    border: solid 2px white;
}

.infoWindow {
    color: #0056b3 !important;
    font-weight: bold;
    text-align: center;
}

/* Languages */
#selectedLanguagesContainer span {
    background-color: #727272;
    color: #ffffff;
    margin: 2px 2px 0 0;
    padding: 2px 4px;
}

/* Info Buttons */
.tooltip-container {
    position: absolute;
    left: 0;
    width: calc(100% - 10px);
    margin: 3px 5px 0;
    display: none;
    background-color: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    z-index: 1000;
}
@media screen and (min-width: 600px) {
    .tooltip-container {
        width: 400px;
        left: calc(100% - 438px);
    }
}

.map-infoBtn {
    cursor: pointer;
} 

/* Save Button */
.save-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}