/* Akzi-Network Logo Styles */
.navbar-logo {
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.login-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.login-logo:hover {
    transform: scale(1.02);
}

.dashboard-logo {
    transition: all 0.3s ease;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .navbar-logo {
        height: 28px !important;
    }
    
    .dashboard-logo {
        height: 36px !important;
    }
    
    .login-logo {
        height: 50px !important;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 24px !important;
    }
    
    .dashboard-logo {
        height: 32px !important;
    }
}

/* Print styles for logos */
@media print {
    .navbar-logo,
    .login-logo,
    .dashboard-logo {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    .logo-img {
        max-height: 40px;
    }
}

/* Brand consistency */
.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}