body {
    margin: 0;
    font-family: 'Lora', serif;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 0.25em 0.5em;
    position: sticky;
    top: 0;
}

.logo_img {
    width: auto;
    height: 4em;
    flex-shrink: 0;
    cursor: pointer;
}

.logo_txt {
    flex: 1;
    word-wrap: break-word;
}

.menu div:hover {
    color: rgb(158, 212, 227);
}

.menu {
    font-family: 'Montserrat', serif;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-right: 1em;
    cursor: pointer;
}

.title {
    background-image: url("Imgs/Mendoza.jpg");
    background-position: center;
    background-size: cover;
    font-size: 1em;
    text-align: center;
    color: white;
    padding: 0 2em;
    text-shadow: 0.5em 0.5em 1em #333;
}


.main {
    display: flex;
    flex: 1;
}

.options {
    width: 12em;
    display: flex;
    flex-direction: column;
}

.map {
    flex: 1;
    background-color: white;
}

.footer {
    display: flex;
    background-color: #333;
    color: gainsboro;
    font-size: 1em;
    align-items: center;
    padding-left: 0.5em;
}

/* Estilo del marcador personalizado */
.custom-marker {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 6em;
    height: 1.5em;
    background: rgba(255, 255, 255, 0.9);
    border: 1px transparent;
    border-radius: 0.75em;
    box-shadow: 0.5em 0.5em 1em gray;
    font-family: sans-serif;
    font-size: 1em;
    overflow: hidden;
}

.custom-marker img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
}

.custom-marker span {
    flex: 1;
    text-align: left;
    padding-left: 0.5em;
    font-weight: bold;
    color: #333;
}

.group {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 0.5em;
}

.groupTitle {
    display: flex;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    margin: 1em 0 0 0;
    justify-content: center;
}

.groupDateTime {
    font-size: 0.8em;
}