/* Logo Styles */
.header-logo {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 2px;
}

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

.header-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

body.dark-theme .header-logo {
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
    background-color: #2a2a2a;
    border: 1px solid #333;
}

/* Mobile styles for the logo */
@media (max-width: 768px) {
    .header-logo {
        width: 40px;
        height: 40px;
        top: 0.75rem;
        left: 0.75rem;
        padding: 1px;
    }
}