
.mobile-drawer-toggle {
    background-color: var(--secondary-color);
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-drawer-toggle:hover {
    background-color: var(--tertiary-color);
}

.mobile-drawer-toggle:active {
    transform: scale(0.95);
}

.mobile-drawer-toggle i {
    transition: transform 0.2s ease;
}

.mobile-drawer-toggle:hover i {
    transform: rotate(90deg);
}

.drawer-container {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.drawer-container.open {
    transform: translateX(300px);
}

@media (min-width: 1024px) {
    .drawer-container {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
    }
}

.drawer {
    padding: 20px;
}

.drawer.open {
    display: block;
}

@media (max-width: 1023px) {
    .drawer {
        display: none;
    }

    .drawer.open {
        display: block;
    }
}
