.reportes-container {
    display: flex;
    height: calc(100vh - 80px); /* Adjust based on navbar height */
}

.control-column {
    flex: 1;
    background-color: #0a2f35; /* Dark blue/petroleum */
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mapa-title {
    text-align: center;
    border-bottom: 4px solid white;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.control-section input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    font-size: 1em;
}

.control-section h3 {
    margin-bottom: 10px;
}

.options {
    display: flex;
    gap: 10px;
}

.option-btn {
    background-color: #0a2f35;
    color: white;
    border: 1px solid white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
}

.option-btn:hover {
    background-color: #1a4f55;
}

.option-btn.active {
    background-color: #d9534f; /* Example active color */
    border-color: #d9534f;
}

.map-column {
    flex: 2;
    position: relative;
}

.map-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.map-marker img {
    width: 30px;
    height: 30px;
}
