.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    height: 100vh;
    background: #ffffee;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.menu a {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.1, 0.74, 0.74, 1);
}

.menu a:hover {
    font-weight: 600;
    background-color: #e0e0e0;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.1, 0.74, 0.74, 1);
}

@media (max-width: 768px) {
    .menu {
        width: 100px;
    }
}