/* Estilos modernos Material Design para el popup del mapa */
.leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 270px !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.map-popup {
    display: flex;
    flex-direction: column;
}

.map-popup .popup-title {
    background: #f8f9fa;
    color: #1a73e8;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #e8eaed;
    line-height: 1.4;
    text-align: center;
}

.popup-table {
    display: none;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.popup-table th,
.popup-table td {
    padding: 8px 12px;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px solid #f1f3f4;
}

.popup-table th {
    font-weight: 500;
    color: #5f6368;
    width: 45%;
    background: transparent;
}

.popup-table td {
    color: #202124;
}

.popup-empresas {
    padding: 10px 12px;
    background: #fff;
}

.col-md-auto .popup-empresas {
    background-color: var(--ds-laseme-pure-color);
}

.popup-label {
    font-size: 10px;
    font-weight: 700;
    color: #70757a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: none;
}

.empresa-list {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.empresa-item {
    margin-bottom: 6px;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    list-style: none !important;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.empresa-item:hover {
    border-color: var(--ds-laseme-primary-color);
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.empresa-item:last-child {
    margin-bottom: 0;
}

.empresa-name {
    display: block;
    font-weight: 600;
    color: var(--ds-laseme-text-color);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 3px;
}

.empresa-name:hover {
    text-decoration: underline;
}

.empresa-details {
    display: block;
    font-size: 12px;
    color: #5f6368;
    line-height: 1.4;
}

.no-data-msg {
    padding: 12px;
    color: #70757a;
    font-style: italic;
    font-size: 13px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dadce0;
}

/* Scrollbar personalizado para el contenedor AJAX */
.empresa-ajax-container {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.empresa-ajax-container::-webkit-scrollbar {
    width: 6px;
}

.empresa-ajax-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.empresa-ajax-container::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 10px;
}

.empresa-ajax-container::-webkit-scrollbar-thumb:hover {
    background: #bdc1c6;
}

.loc-card .popup-empresas {
    padding: 0;
    margin: 0;
    background: transparent;
    position: relative;
    z-index: 5;
}

.loc-card .empresa-ajax-container {
    max-height: 115px;
    overflow-y: auto;
}