@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #101828;
  --color-accent: #344054;
  --color-premium: #FFD21E;
  --color-bg: #FFFFFF;
  --color-white: #FFFFFF;
  --color-text: #101828;
  --color-text-muted: #667085;
  --color-border: rgba(16, 24, 40, 0.08);
  --color-glass: rgba(255, 255, 255, 0.8);
  --color-shadow: rgba(16, 24, 40, 0.05);
  --color-card-bg: #FFFFFF;
  --color-input-bg: #F8FAFC;
  --color-thinking-bg: #FFF9E6;
  --color-thinking-text: #B28B00;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-header: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.06);
  --fs-micro: 11px;
}

body.dark-theme {
  --color-primary: #f8fafc;
  --color-accent: #94a3b8;
  --color-premium: #FFD21E;
  --color-bg: #0f172a;
  --color-white: #1e293b;
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-glass: rgba(15, 23, 42, 0.8);
  --color-shadow: rgba(0, 0, 0, 0.2);
  --color-card-bg: #1e293b;
  --color-input-bg: #0f172a;
  --color-thinking-bg: #1e293b;
  --color-thinking-text: #FFD21E;
}

/* Logo inversion for dark theme */
body.dark-theme .brand-logo-img,
body.dark-theme .side-menu-logo,
body.dark-theme #profile-img,
body.dark-theme #side-profile-img {
  filter: invert(1) brightness(1.2);
}

/* Button & Icon visibility in dark theme */
body.dark-theme .btn-cta,
body.dark-theme .search-send-btn.active {
  color: var(--color-bg) !important;
}

body.dark-theme .premium-btn {
  color: #101828 !important; /* Keep dark text on yellow */
}


* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
html, body { 
  min-height: 100%; 
  font-family: var(--font-main); 
  background-color: var(--color-bg);
  color: var(--color-text); 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--transition); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.app-container { min-height: 100vh; display: flex; flex-direction: column; position: relative; }

/* Header Navigation */
.header {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.header-right { justify-content: flex-end; }

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-img {
    height: 28px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}
.brand-logo-img:active { transform: scale(0.95); }

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--color-text-muted);
}
.icon-btn:hover { background: var(--color-shadow); color: var(--color-text); }

.premium-btn {
    background: var(--color-premium);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 210, 30, 0.3);
}
.premium-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255, 210, 30, 0.4); }

.premium-btn svg { width: 14px; height: 14px; }

/* Global Content Fade */
.content-fade {
    opacity: 0;
    animation: contentReveal 1s ease 0.5s forwards;
}

@keyframes contentReveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Content */
.main-content { flex: 1; padding: 24px; max-width: 900px; margin: 0 auto; width: 100%; padding-bottom: 5px; }
.view { display: none; }
.view.active { display: block; animation: fadeIn 0.4s ease-out; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Section */
.hero-section { 
    text-align: center; 
    padding: 80px 20px 40px; 
}

.hero-icon {
    margin-bottom: 32px;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    opacity: 0.9;
}

.hero-title { 
    font-family: var(--font-header);
    font-size: var(--fs-h1); 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: var(--color-primary);
    line-height: 1.2;
    font-style: italic;
}

.hero-subtitle { 
    color: var(--color-text-muted); 
    font-size: 13px; 
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    text-transform: uppercase;
    opacity: 0.5;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--color-input-bg);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 40px;
    border: 1px solid var(--color-border);
}
.status-pill b { color: var(--color-text); margin-left: 4px; }

/* Grid Cards */
.cards-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
    max-width: 600px; 
    margin: 40px auto 0; 
}

.analysis-card {
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.analysis-card:hover { 
    transform: translateY(-2px); 
    border-color: var(--color-premium); 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.card-icon-small {
    width: 24px;
    height: 24px;
    background: #FFFCF2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-title-small { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.card-desc-small { font-size: 11px; color: var(--color-text-muted); font-weight: 500; }

/* Side Menu */
.side-menu-overlay { 
  position: fixed; inset: 0; background: rgba(0,0,0,0.2); 
  z-index: 1500; display: none; cursor: pointer; 
  backdrop-filter: blur(4px);
}
.side-menu-overlay.active { display: block; }

.side-menu { 
  position: fixed; top:0; left:0; bottom:0; width: 320px; 
  background: var(--color-white); 
  z-index: 1501; 
  transform: translateX(-100%); transition: var(--transition); 
  padding: 48px 32px; border-right: 1px solid var(--color-border);
  box-shadow: 24px 0 80px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}
.side-menu.active { transform: translateX(0); }

.side-menu-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 64px; 
}

.side-menu-logo { height: 24px; width: auto; opacity: 0.9; transition: var(--transition); }
.side-menu-logo:hover { opacity: 1; transform: scale(1.05); }

#side-menu-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: var(--transition);
}
#side-menu-close:hover { background: var(--color-shadow); color: var(--color-text); }

.side-menu-links { list-style: none; margin-bottom: auto; }
.side-menu-links li { margin-bottom: 12px; }
.side-menu-links a { 
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px; 
  border-radius: 12px; 
  font-weight: 600; 
  font-size: 14px; 
  color: var(--color-text-muted);
  transition: var(--transition);
  border: 1px solid transparent;
}
.side-menu-links a:hover { 
    background: var(--color-input-bg); 
    color: var(--color-primary); 
    border-color: var(--color-border);
    transform: translateX(4px);
}

.side-menu-links a[data-action="reset"] { color: #D92D20; margin-top: 12px; }
.side-menu-links a[data-action="reset"]:hover { background: #FEF3F2; border-color: #FEE4E2; }

/* History Section */
.history-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(16, 24, 40, 0.06);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.history-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-left: 18px;
}

.history-list {
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}
.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-thumb { background: #E4E7EB; border-radius: 10px; }

.history-item {
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}
.history-item:hover {
    background: var(--color-input-bg);
    border-color: var(--color-border);
    transform: translateX(4px);
}

.history-item-query {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-item-date {
    font-size: 11px;
    color: var(--color-text-muted);
}

.history-empty {
    padding: 20px 18px;
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

/* Modals */
.modal-overlay { 
  position: fixed; inset: 0; background: rgba(16, 24, 40, 0.4); 
  backdrop-filter: blur(8px); z-index: 2000; 
  display: flex; align-items: center; justify-content: center; 
  opacity: 0; visibility: hidden; transition: var(--transition);
  padding: 24px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container { 
  background: var(--color-white); width: 100%; max-width: 400px; 
  border-radius: 16px; padding: 32px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}
.modal-text { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.btn-cta { width: 100%; padding: 14px; background: var(--color-primary); color: white; border-radius: 8px; font-weight: 700; margin-top: 24px; font-size: 14px; }

/* Auth Specific */
.auth-container { max-width: 440px; position: relative; }
.auth-view { display: none; }
.auth-view.active { display: block; animation: fadeIn 0.3s ease; }
.auth-form { text-align: left; margin-top: 24px; }
.auth-switch { margin-top: 16px; font-size: 13px; color: var(--color-text-muted); }

/* Toggle Switch Slider */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.toggle-switch input { 
  opacity: 0; width: 0; height: 0; 
}
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background-color: #E4E7EB; transition: .3s; border-radius: 20px;
}
.toggle-slider:before {
  position: absolute; content: ""; height: 16px; width: 16px;
  left: 2px; bottom: 2px; background-color: white; transition: .3s; border-radius: 50%;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-primary);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.auth-switch a { color: var(--color-primary); font-weight: 700; }
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; }
.input-group input { 
    width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--color-border); 
    font-size: 14px; transition: var(--transition); background: #F8FAFC; 
}
.input-group input:focus { border-color: var(--color-primary); background: white; outline: none; box-shadow: 0 0 0 4px rgba(16, 24, 40, 0.05); }

.modal-close-x {
    position: absolute; top: 16px; right: 16px; font-size: 24px; color: var(--color-text-muted); 
    cursor: pointer; opacity: 0.5; transition: var(--transition);
}
.modal-close-x:hover { opacity: 1; color: var(--color-primary); }

.user-logged-in #btn-user { color: #10B981; }
.user-logged-in #btn-user svg { fill: rgba(16, 185, 129, 0.1); }

/* Dictionary Panel */
.dict-panel { 
  position: fixed; top:0; right:0; bottom:0; width: 400px; 
  background: var(--color-white); z-index: 1501; 
  transform: translateX(100%); transition: var(--transition); 
  border-left: 1px solid var(--color-border);
  box-shadow: -24px 0 80px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}
.dict-panel.active { transform: translateX(0); }

.dict-header {
    padding: 40px 32px 24px;
    border-bottom: 1px solid var(--color-border);
}

.dict-title { 
    font-size: 20px; 
    font-weight: 800; 
    font-family: var(--font-header); 
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

#dict-search-input {
    width: 100%;
    padding: 14px 20px;
    background: var(--color-input-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
    margin-top: 24px;
}
#dict-search-input:focus { border-color: var(--color-premium); background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }

.cat-pill {
  padding: 8px 18px; 
  border-radius: 20px; 
  border: 1px solid transparent;
  background: var(--color-input-bg); 
  border: 1px solid var(--color-border);
  font-size: 10px; 
  font-weight: 700; 
  cursor: pointer;
  color: var(--color-text-muted); 
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.cat-pill:hover { background: #E4E7EB; color: var(--color-text); }
.cat-pill.active { 
    background: var(--color-primary); 
    color: white; 
    box-shadow: 0 4px 12px rgba(16,24,40,0.1); 
}

#dict-terms { 
    padding: 16px 32px 40px;
    max-height: calc(100vh - 220px); 
    overflow-y: auto; 
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dict-item { 
    padding: 16px 20px; 
    background: var(--color-white);
    border: 1px solid var(--color-border); 
    border-radius: 12px;
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.dict-item:hover { 
    transform: translateY(-2px);
    border-color: var(--color-premium);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.dict-term { font-weight: 700; color: var(--color-primary); font-size: 14px; margin-bottom: 4px; font-family: var(--font-header); letter-spacing: 0.02em; }
.dict-def { font-size: 12px; color: var(--color-text-muted); line-height: 1.6; font-weight: 500; }

#dict-terms { 
    max-height: calc(100vh - 220px); 
    overflow-y: auto; 
}
#dict-terms::-webkit-scrollbar { width: 4px; }
#dict-terms::-webkit-scrollbar-thumb { background: #F2F4F7; border-radius: 4px; }

/* Floating Search Bar */
.search-bar-wrap { position: fixed; bottom: 40px; left: 0; right: 0; padding: 0 24px; z-index: 1100; pointer-events: none; }
.search-bar { 
  max-width: 600px; margin: 0 auto; 
  background: var(--color-white); 
  display: flex; align-items: center; gap: 12px; padding: 12px 12px 12px 24px; 
  border-radius: 30px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border); 
  pointer-events: auto;
  transition: var(--transition);
}
.search-bar:focus-within {
  transform: translateY(-2px);
  border-color: var(--color-premium);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.search-input { flex: 1; border: none; outline: none; font-size: 14px; font-family: var(--font-main); font-weight: 500; background: transparent; color: var(--color-text); }
.search-input::placeholder { color: #98A2B3; font-weight: 400; opacity: 1; }
.search-send-btn { 
  width: 40px; height: 40px; background: #D0D5DD; 
  color: white; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  transition: var(--transition);
}
.search-send-btn.active { background: var(--color-primary); }
.search-send-btn svg { width: 18px; height: 18px; transform: translateX(-1px); }

/* Results View */
.back-btn { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--color-text-muted); margin-bottom: 24px; }
/* Results View Header Area */
#results-body { 
  padding: 0; 
  background: transparent; 
  border: none; 
}

.rb-container {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  background: var(--color-bg);
}

.rb-header { 
    display: flex; 
    align-items: center;
    gap: 12px; 
    padding: 0 0 24px; 
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.rb-header-icon { 
    color: var(--color-primary); 
    opacity: 0.8;
}

.rb-header-text h3 { 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--color-text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
}

.rb-main { padding: 0; }

.rb-section { 
    margin-bottom: 30px; 
    display: none; 
}
.rb-section.visible { 
    display: block; 
    animation: fadeIn 0.4s ease-out; 
}

.premium-box {
    line-height: 1.8;
    font-size: 14px;
    color: var(--color-text);
    padding: 0;
    margin-bottom: 24px;
}

.box-loading-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #FFF9E6;
    border: 1px solid #FFEBB3;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #B28B00;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: #FFD21E;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Beta Badge & Disclaimer */
.beta-badge {
    font-size: var(--fs-micro);
    font-family: var(--font-main);
    background: rgba(15, 23, 42, 0.03);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 0;
    vertical-align: middle;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

/* Message Bubbles */
.chat-message {
    margin-bottom: 24px;
    max-width: 85%;
    display: flex;
    flex-direction: column;
}

.chat-message.user {
    align-self: flex-end;
    margin-left: auto;
}

.chat-message.ai {
    align-self: flex-start;
}

.chat-bubble {
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.chat-bubble.user {
    background: var(--color-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
    background: var(--color-white);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--color-border);
}

.chat-history-divider {
    height: 1px;
    background: var(--color-border);
    margin: 40px 0;
    position: relative;
    text-align: center;
}
.chat-history-divider::after {
    content: "ÖNCEKİ MESAJLAR";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg);
    padding: 0 12px;
    font-size: 10px;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.ai-disclaimer {
    font-size: var(--fs-small);
    font-family: var(--font-main);
    color: var(--color-text-muted);
    text-align: center;
    margin: 32px auto;
    max-width: 450px;
    line-height: 1.7;
    opacity: 0.7;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-title { font-size: 36px; }
  .beta-badge { font-size: 10px; padding: 2px 8px; }
  .dict-panel { width: 100%; }
}

/* PRINT STYLES */
@media print {
  /* Hide UI elements */
  .header, .search-bar-wrap, .side-menu, .side-menu-overlay, .dict-panel, .btn-cta, .hero-section, .cards-grid {
    display: none !important;
  }
  
  /* Reset layout for print */
  body, html { 
    background: white !important; 
    color: black !important;
    height: auto !important;
  }
  
  .main-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  
  .view.active {
    display: block !important;
  }

  .rb-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: static !important;
  }

  .rb-header {
    border-bottom: 2px solid #000 !important;
    background: white !important;
  }

  .premium-box {
    border: 1px solid #ddd !important;
    background: white !important;
    page-break-inside: avoid;
  }

  .rb-section-title {
    color: black !important;
    border-bottom: 1px solid #000 !important;
    opacity: 1 !important;
  }

  /* Force display of background colors in print if browser allows */
  .box-blue { border-left: 6px solid #3B82F6 !important; }
  .box-yellow { border-left: 6px solid #F59E0B !important; }
  .box-red { border-left: 6px solid #EF4444 !important; }

  /* Ensure footer warning is clear */
  .ai-disclaimer {
    margin-top: 50px !important;
    border-top: 1px solid #000 !important;
    padding-top: 20px !important;
    color: black !important;
    opacity: 1 !important;
    font-style: italic !important;
  }
}

/* --- Added for ChatGPT Sidebar style --- */
.side-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.side-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
}
.side-user-profile:hover {
    background: #F8FAFC;
    transform: translateY(-1px);
}

#side-profile-img {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid #6366f1;
}

.side-profile-info {
    flex: 1;
    min-width: 0;
}

.side-profile-info .name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-profile-info .pkg {
    font-size: 11px;
    font-weight: 600;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 4px;
}
