/* Standardize Company Logo */
.card .company-logo,
.card-img.company-logo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Standardize Logo Container */
.card .logo-container {
    width: 90px; /* Increased width slightly for better logo balance */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px; /* Increased padding for better spacing */
    border-radius: 6px; /* Slightly rounded corners for better aesthetics */
    overflow: hidden;
}

/* Ensure logos adapt inside the container */
.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card .logo-container {
        width: 75px; /* Adjusted for better responsiveness */
        height: 50px;
        padding: 3px; /* Reduced padding on smaller screens */
    }
}
