/* xl - DESKTOP STYLES */ 
.map-masmedan {
    display: flex;
    flex-direction: row-reverse;
    padding: 50px 0;
}

.masmedan-container-data::-webkit-scrollbar {
    width: 8px;
}

.masmedan-container-data::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.masmedan-container-data::-webkit-scrollbar-thumb {
    background-color: #2e3192;
    border-radius: 10px;
}

.masmedan-container-data {
    scrollbar-width: thin;
    scrollbar-color: #2e3192 #f0f0f0; /* thumb color | track color */
}

.sucursal-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.2s ease;
}

.sucursal-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sucursal-card h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #2e3192;
}

.sucursal-card .estado {
    position: absolute;
    top: 12px;
    right: 16px;
    background: #d4fbe3;
    color: #128148;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}

.sucursal-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #444;
}

.botones {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.botones button {
    padding: 6px 12px;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-mapa {
    background: #f1f1f1;
    color: #333;
}

.btn-info {
    background: #2e3192;
    color: white;
}

.btn-info:hover{
	background: var(--porto-secondary-color)!important;
}

#buscador-sucursales {
    width: 100%;
    padding: 8px;
    background: #f7f7f7 !important;
    border-bottom: 0;
}



/* md - TABLET PORTRAIT STYLES */ 
@media (max-width: 991px) {
  div#mapa-sucursales {
      flex: unset !important;
  }
  
  .map-masmedan {
      flex-direction: column-reverse !important;
  }
  
  .search-masmedan + div{
  	height: 300px !important;
  }
}

