/* استایل منوی کناری */
.side-menu {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    /* مخفی در حالت عادی */
    background-color: #ffffff;
    z-index: 1000;
    transition: 0.3s;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 20px;
}

.side-menu a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.side-menu a:hover {
    color: #a62626;
}

.menu-header {
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.close-btn {
    cursor: pointer;
    font-size: 24px;
}

/* لایه محو کننده پس‌زمینه */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}