/* Kargo Logoları için Standart Boyutlandırma */
.cargo-logo {
    height: 39px !important;
    max-height: 39px !important;
    max-width: 84px !important;
    width: auto !important;
    object-fit: contain;
    display: inline-block;
}

.cargo-logo-small {
    height: 24px !important;
    max-height: 24px !important;
    max-width: 60px !important;
    width: auto !important;
    object-fit: contain;
}

.cargo-logo-large {
    height: 56px !important;
    max-height: 56px !important;
    max-width: 120px !important;
    width: auto !important;
    object-fit: contain;
}

/* Gelecekteki kargolar için otomatik boyutlandırma */
.cargo-logo-auto {
    height: 39px !important;
    max-height: 39px !important;
    max-width: 84px !important;
    object-fit: contain;
    width: auto !important;
}

/* Pazaryeri logoları için standart boyutlandırma */
.marketplace-logo {
    height: 39px;
    max-height: 39px;
    max-width: 84px;
    object-fit: contain;
    width: auto;
}

/* Responsive boyutlandırma */
@media (max-width: 768px) {
    .cargo-logo {
        height: 32px !important;
        max-height: 32px !important;
        max-width: 70px !important;
    }
    
    .cargo-logo-small {
        height: 20px !important;
        max-height: 20px !important;
        max-width: 50px !important;
    }
    
    .marketplace-logo {
        height: 32px;
        max-height: 32px;
        max-width: 70px;
    }
}
