/* assets/css/components/header.css */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 990;
    width: 100%;
    /* Advanced Glassmorphism Gradient */
    background: linear-gradient(180deg, rgba(17, 17, 36, 0.95) 0%, rgba(17, 17, 36, 0.8) 60%, rgba(17, 17, 36, 0) 100%);
    backdrop-filter: blur(5px);
    /* Nice blur effect behind header */
    transition: all 0.3s ease;
}

.header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
}

.app-header .header-icon {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle bubble background */
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.app-header .header-icon:hover {
    transform: scale(1.1);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.app-header .header-icon:active {
    transform: scale(0.95);
}

.app-header .header-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
}

/* Badge styling enhancement */
.app-header .header-icon span {
    border: 1px solid var(--bg-color);
    /* Cutout effect */
}