.tejarat-panel-wrap { font-family: iransans, Tahoma, Arial, sans-serif; direction: rtl; background-color: #f5f5f9; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999; display: flex; color: #333; width: 100vw; height: 100vh; overflow: hidden; }
.tejarat-panel-wrap * { box-sizing: border-box; }
.tejarat-panel-wrap a { text-decoration: none; color: inherit; }
.tejarat-panel-wrap ul { list-style: none; padding: 0; margin: 0; }
.tejarat-sidebar { width: 250px; background: #fff; border-left: 1px solid #eee; padding: 20px 0; display: flex; flex-direction: column; transition: all 0.3s ease; height: 100%; overflow-y: auto; }
.tejarat-sidebar .logo-area { text-align: center; padding: 0 20px 20px; border-bottom: 1px solid #eee; margin-bottom: 15px; }
.tejarat-sidebar .logo-area img { max-width: 150px; }
.tejarat-sidebar-menu li a { display: flex; align-items: center; padding: 12px 25px; font-size: 14px; color: #555; transition: 0.2s; }
.tejarat-sidebar-menu li.active a, .tejarat-sidebar-menu li a:hover { background: #fff0e6; color: #e67e22; border-right: 3px solid #e67e22; }
.tejarat-main-content { flex: 1; display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.tejarat-header { background: #fff; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 10; }
.tejarat-header-left { display: flex; align-items: center; justify-content: flex-end; width: 100%; }
.tejarat-header-right { display: flex; align-items: center; }
.tejarat-user-profile-header { display: flex; align-items: center; background: #fff; border: 1px solid #eee; border-radius: 50px; padding: 5px 15px 5px 5px; cursor: default; }
.tejarat-user-profile-header .user-info { display: flex; flex-direction: column; margin-left: 10px; text-align: right; }
.tejarat-user-profile-header .user-name { font-size: 13px; font-weight: bold; }
.tejarat-user-profile-header img { border-radius: 50%; width: 40px; height: 40px; border: 2px solid #e67e22; }
.tejarat-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: #333; margin-left:15px; }
.tejarat-auth-wrapper { max-width: 400px; margin: 100px auto; padding: 25px; background: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); position: relative; z-index: 999999; }
.tejarat-auth-wrapper input, .tejarat-auth-wrapper select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.tejarat-auth-wrapper button { width: 100%; padding: 12px; border: none; border-radius: 6px; cursor: pointer; font-family: inherit; font-weight: bold; color: #fff; }
.tejarat-tab-content { display: none; padding: 0 30px 30px; animation: fadeIn 0.4s; }
.tejarat-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.tejarat-panel-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border: 1px solid #eee; margin-bottom: 20px; }
.tejarat-panel-card label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: bold; color: #555; }
.tejarat-panel-card input { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.tejarat-disabled-input { background: #f0f0f0; color: #888; cursor: not-allowed; border-color:#e0e0e0 !important; }
.tejarat-panel-card button { padding: 10px 20px; color: #fff; border: none; border-radius: 5px; cursor: pointer; font-family: inherit; }

/* استایل آکاردئون پیام‌ها */
.tejarat-msg-item { border: 1px solid #eee; margin-bottom: 10px; border-radius: 6px; overflow: hidden; }
.tejarat-msg-title { background: #fdfdfd; padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; transition: 0.2s; }
.tejarat-msg-title.unread { background-color: #fff9f5; border-right: 3px solid #e67e22; }
.tejarat-msg-title:hover { background: #f5f5f5; }
.tejarat-msg-title::after { content: '▼'; font-size: 10px; color: #888; }
.tejarat-msg-title.open::after { content: '▲'; }
.tejarat-msg-content { padding: 15px; display: none; border-top: 1px solid #eee; background: #fff; line-height: 1.8; font-size: 14px; }

@media (max-width: 768px) {
    .tejarat-sidebar { position: fixed; right: -250px; top: 0; bottom: 0; z-index: 999; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .tejarat-sidebar.open { right: 0; }
    .tejarat-mobile-toggle { display: block; }
    .tejarat-header { padding: 15px; flex-direction: row-reverse; }
    .tejarat-header-left { width: auto; justify-content: flex-start; }
    .tejarat-tab-content { padding: 0 15px 15px; }
}