.header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 60px;
    /*background: linear-gradient(to right, #FEF085, #FBED82);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.header img {
    height: 40px;
    margin-right: 10px;
}

.header .title {
    display: flex;
    align-items: center;
}

/* Hide header on mobile devices */
@media (orientation: portrait) {
    .header {
        display: none;
    }
}