body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.mobile-menu {
    width: 100%;
    max-width: 320px;
    background: white;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.close-btn {
    background: #f2f2f2;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    float: right;
}

.menu-list {
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    font-size: 16px;
}

.menu-list li.active {
    font-weight: bold;
}

.arrow {
    font-size: 14px;
}

hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.extra-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.link-item img {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: none;
        padding: 16px;
    }
}