.suppliers-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.suppliers-list {
    width: 40%;
    max-width: 32%;
    flex: 1 1 40%;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
}

.supplier-item-flex {
    display: flex;
    gap: 5px;
}

.suppliers-list strong {
    font-weight: bold;
    color: #000;
}

.suppliers-map {
    flex: 1 1 60%;
    width: 60%;
    max-width: 60%;
}

#mapa-proveedores {
    width: 100%;
    height: 600px;
}

.suppliers-list input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.supplier-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.supplier-item:hover {
    background-color: #f9f9f9;
}

#buscador-proveedores {
    display: block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    color: #ccc;
    width: 100%;
}

.marker-content {
    background-color: #333333;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    border: 5px solid #B4B2A8;
}

.suppier-content .city,
.suppier-content .address,
.suppier-content a {
    font-size: 16px;
}