/* Logo Styling untuk SP Karyawan */
.logo-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.logo-header img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

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

.logo-header h4 {
    color: var(--primary-color, #1a365d);
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-header img {
        height: 50px;
    }
    
    .logo-header h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .logo-header img {
        height: 45px;
    }
    
    .logo-header h4 {
        font-size: 1rem;
    }
}

/* Logo untuk halaman login */
.login-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Logo untuk header utama */
.main-logo {
    height: 60px;
    width: auto;
    margin-right: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
} 