/* Company logo styles */
.company-logo-image {
    max-height: 150px;
    max-width: 150px;
    object-fit: contain;
}

/* Empresa header layout */
.empresa-header .row {
    align-items: flex-start;
}

.empresa-content {
    padding-right: 20px;
}

.empresa-badge {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.badge-image {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

/* Client logo in admin tables */
.client-logo-small {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empresa-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .company-logo-image {
        max-height: 60px;
        max-width: 150px;
    }
}
/* ===== Status Badges Globales (Proceso) ===== */
.p26-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.p26-status-badge.entregado {
    background: #F0FDF4;
    color: #6AA84F !important;
    border: 1px solid #6AA84F;
}

.p26-status-badge.completado {
    background: #F0FDF4;
    color: #6AA84F !important;
    border: 1px solid #6AA84F;
}

.p26-status-badge.pendiente {
    background: #fdf2f8;
    color: #E04587 !important;
    border: 1px solid #E04587;
}

.p26-status-badge.nd {
    background: #f0f4f8;
    color: #56869E !important;
    border: 1px solid #56869E;
}

.p26-status-badge.agendada {
    background: #f5f5f5;
    color: #000000 !important;
    border: 1px solid #000000;
}

.p26-status-badge.en-revision {
    background: #DBE9FF;
    color: #3b5bdb !important;
    border: 1px solid #3b5bdb;
}
