body {
    margin: 0;
    height: 100vh;
    background-color: #b7e0fc; /* Reemplaza este color con el que desees */
}

#map {
    height: 400px;
    width: 100%;
    z-index: 10;
}
/* Estilo para hacer que los labels sean más grandes y en negrita */
.form-label {
    font-size: 1.2rem; /* Aumenta el tamaño de la fuente */
    font-weight: bold; /* Hace la fuente en negrita */
}

.notification-bullet {
    position: relative;
    margin-left: 10px;
    cursor: pointer;
}

.notification-bullet::after {
    content: attr(data-count);
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los botones */
    /*margin-top: 50px; /* Espacio desde la parte superior */
}

.button-container button{
    height: 40px;
}

.navbar {
    background-color: #333;
}

.navbar .logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: contain;
}

.navbar .logo span {
    color: #003366; /* Azul oscuro */
    font-weight: bold;
    font-size: 1.25rem; /* Ajustar el tamaño de la fuente */
}

.sliding-panel {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background-color: #f9f9f9;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 1040;
}

.sliding-panel form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sliding-panel.show {
    right: 0;
}

.button-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .dual-input-row {
        display: flex;
        gap: 20px;
    }
    .dual-input-row .form-group {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .form-container {
        display: none !important;
    }

    .toggle-button {
        display: block;
    }

    .button-container {
        flex-direction: column;
        gap: 5px;
    }
}

/*  --------------------------------- Estilos botones de información -----------------  */
.info-icon {
    cursor: pointer;
    color: white;
    background-color: blue;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 5px;
}
.info-icon:hover {
    cursor: pointer;
}
.tooltip-box {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    white-space: pre-line;  /* Permite respetar los saltos de línea */
}

/*  --------------------------------- Estilos para la traducción -----------------  */
  .idioma-selector {
    position: absolute;
    top: 40px;
    right: 20px;
    cursor: pointer;
    z-index: 100;
}

.idioma-actual {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.idioma-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
}

.idioma-menu img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px;
    transition: transform 0.2s ease-in-out;
}

.idioma-menu img:hover {
    transform: scale(1.1);
}