/* ============================================
   APP HEADER LOGO STYLING
   Version: 2.25
   Date: January 14, 2026
   ============================================ */

/* Header Content Layout */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* App Logo in Header */
.app-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Header Title */
.header-title {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    white-space: nowrap;
}

/* Dark Theme */
body.dark-theme .header-title {
    color: #818cf8;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .app-logo {
        width: 32px;
        height: 32px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .header-left {
        gap: 8px;
    }
}
