@import url('https://quotationtm.ir/public/css/style.css');
:root{
--accent: #FE9100;
--red: #FF4A3D;
--green: #10B981;
--yellow: #FACC15;
--blue: #3B82F6;
--dark: #2D2D2D;
--muted: #9AA0A6;
--card: #ffffff;
--bg: #f6f6f6;
--radius: 14px;
}
* {
    font-family: 'vazir';
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
a{
    text-decoration: none;
}
html, body {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    background: #fafafa;
    direction: rtl;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}
.container {
    height: calc(100vh - 62px);
    display: flex;
    flex-direction: column;
    background: #fff;
    padding-top: 62px;
}
/* HEADER (FIXED) */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}
.header img {
    width: 26px;
    height: 26px;
    cursor: pointer;
}
.header .logo {
    width: 170px;
}

/* HAMBURGER MENU OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: flex-start;
    z-index: 999;
}

.side-menu {
    width: 240px;
    height: 100%;
    background: white;
    border-radius: 16px 0 0 16px;
    padding: 20px;
    transform: translateX(100%);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu.open { transform: translateX(0); }

.menu-close {
    font-size: 22px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: left;
}
.side-menu a {
    text-decoration: none;
    font-size: 15px;
    color: #2E3339;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.menu-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.menu-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f1f1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.menu-name {
    margin-top: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #2E3339;
}
.menu-role {
    font-size: 13px;
    color: #7A7F87;
    margin-top: 2px;
}
.menu-line {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}


.popup {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Add Zoom Animation */
.animate {
    animation: zoom 0.6s
}
@keyframes zoom {
from {
transform: scale(0)
}
to {
transform: scale(1)
}
}

.modal-content {
    display: flex;
    width: 100%;
    max-width: 440px;
    background-color: transparent;
}