body { font-family: sans-serif; margin: 20px; }
    /*Estilo para el tamaño del mapa*/
    #map { height: 800px; width: 100%; position: relative; }
    #controls { margin-top: 1em; }
    #catalogo-container iframe { border: none; }

    /* Estilo para el cuadro de información */
#info-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 400px;
    max-width: 50px;
    font-size: 15px;
    border: 2px solid #2d6173;
    }

#info-box h4 {
    margin: 0 0 10px 0;
    color: #2d6173;
    font-size: 16px;
    }

#info-box p {
    margin: 5px 0;
    line-height: 1.4;
    }

#info-box a {
    font-weight: bold;
    }

#info-box a:hover {
    text-decoration: underline;
    }

.info-label {
    font-weight: bold;
    color: #555;
    }

    /* Soporte para texto árabe */
    .arabic-text {
    direction: rtl;
    text-align: right;
    }

    /* Estilos para el menú de productos */
#menu-productos {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    }

#menu-productos h5 {
    margin: 0 0 10px 0;
    color: #2d6173;
    font-size: 14px;
    font-weight: bold;
    }

.categoria-menu {
    margin-bottom: 12px;
    }

.categoria-titulo {
    font-weight: bold;
    color: #495057;
    font-size: 13px;
    margin-bottom: 5px;
    }

    .marcas-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    }

    .marca-enlace {
    background: #6ec3df;
    /*background: #2d6173;*/
    /*color: rgb(255, 255, 255);*/
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s;
    }

    .marca-enlace:hover {
    background: #1e4a5a;
    color: white;
    text-decoration: none;
    }

    /* Ocultar menú por defecto */
    #menu-productos {
    display: none;
    }