﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

.list {
    width: 35%;
    overflow-y: auto;
    border-right: 1px solid #ddd;
    padding: 10px;
}

.list-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

    .list-item:hover {
        background: #f5f5f5;
    }

.map {
    width: 65%;
}

#map {
    height: 100%;
    width: 100%;
}

.store-name {
    font-weight: bold;
}

.store-price {
    color: green;
}

.flex-container {
    display: flex; /*  Aligns children side by side */
    align-items: flex-end; /*  Vertically centers the text relative to the image */
    gap: 25px; /*  Adds space between the image and text */
}

.side-image {
    width: 100px; /*  Set your preferred image width  */
    height: auto;
}

.text-data p {
    margin: 0; /*  Removes default spacing for clean alignment  */
}
.ul {
    list-style-type: none; /*  Menu de Filtros  */
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #8d918f;
}
.li {
    float: left;
    margin-right:15px;
}

    .li a {
        display: block;
        color: white;
        text-align: center;
        margin-left:10px;
        margin-right:10px;
        padding: 10px;
        text-decoration: none;
    }

    .li a:hover {
        background-color: #111111;
    }
.my-custom-button {
    background-color: #1a3e78;
    color: white;
    border-radius: 4px;
    padding: 10px 20px;
}
.rounded-button {
    border-radius: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
}
.rounded-ComboBox {
    border-radius: 15px;
    padding: 10px 20px;
    background-color: none;
    color: #007bff;
    border: medium;
    border-color: #1a3e78;
}
/* Each column takes up equal width */
.column {
    flex: 1;
    padding: 15px;
    background-color: #f1f1f1;
}

/* Makes columns stack vertically on small screens */
@media (max-width: 600px) {
    .flex-container {
        flex-direction: column;
    }
}
.horizontal-list {
  /*  list-style-type: none;  Removes the default bullet points */
    padding: 5px;
}

.horizontal-list li {
    display: inline-block; /* Aligns the items horizontally */
    margin-right: 15px; /* Adds space between items */
}