.supplier-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.supplier-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fcfcfc;
    max-width: 250px;
    margin: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.supplier-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 15px;
}

.supplier-logo img {
    width: 95%;
    max-height: 60%;
    display: block;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.supplier-card:hover .supplier-logo img {
    filter: grayscale(0%);
}

.supplier-info {
    padding: 15px;
}

.supplier-info h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0;
}

.supplier-info p {
    font-size: 14px;
    color: #555;
    min-height: 40px;
}

.supplier-buttons {
    margin-top: 10px;
}

.join-button,
.suppliersite-button {
    display: inline-block;
    padding: 8px 10px;
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    margin: 3px;
    transition: background 0.3s;
}

.join-button {
    background: #0C426B; /* TAG Blue */
}

.join-button:hover {
    background: #B22029; /* TAG Red */
}

.suppliersite-button {
    background: #B22029; /* TAG Red */
}

.suppliersite-button:hover {
    background: #0C426B; /* TAG Blue */
}

.city-selector-form {
    text-align: center;
    margin: 20px auto;
}

.city-selector-form select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
