/* ==========================================================================
   PUGY CRM — PREMIUM SLATE DESIGN SYSTEM
   Theme: Deep Slate & Crystal Emerald (Professional SaaS Theme)
   ========================================================================== */

/* CSS Custom Properties */
:root {
    --bg-page: #0F172A;        /* Koyu Slate Sayfa Zemin */
    --bg-card: #1E293B;        /* Kart / Panel Zemin */
    --bg-inner: #0F172A;       /* İç Liste Zemin */
    --border: rgba(255,255,255,0.06); /* İnce sınır çizgisi */
    --border-hover: rgba(59, 130, 246, 0.25);
    
    --primary: #3B82F6;        /* Kristal Mavi */
    --primary-hover: #2563EB;
    --primary-light: rgba(59, 130, 246, 0.1);
    
    --success: #10B981;        /* Canlı Zümrüt Yeşil (Won) */
    --success-light: rgba(16, 185, 129, 0.1);
    
    --warning: #F59E0B;        /* Kehribar Sarı */
    --danger: #EF4444;         /* Tehlike Kırmızı */
    --danger-light: rgba(239, 68, 68, 0.1);
    
    --text-main: #F1F5F9;      /* Açık Gri Başlık */
    --text-muted: #94A3B8;     /* Muted Alt Başlık */
    --text-light: #64748B;     /* Pasif Metin */
    
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    position: fixed;
    font-family: 'Inter', 'Nunito', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

input, select, textarea {
    font-family: inherit;
    outline: none;
    border: 1px solid var(--border);
    background-color: #0F172A;
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.hidden {
    display: none !important;
}

/* --- 1. LOGIN SCREEN --- */
.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #1E293B 0%, #0F172A 100%);
    overflow-y: auto;
    padding: 20px;
}

.login-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    padding: 44px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: slideUp 0.4s ease;
}

.login-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
}

.login-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: bounce 4s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.login-card h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.login-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 28px;
    font-weight: 500;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 18px;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
}

.error-msg {
    color: var(--danger);
    font-size: 12px;
    margin-top: 14px;
    font-weight: 600;
    min-height: 18px;
}

/* --- 2. CORE LAYOUT --- */
.panel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sidebar {
    width: 260px;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    flex-shrink: 0;
}

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

.sidebar-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.sidebar-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 20px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 9px;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    padding: 1px 5px;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
    margin-top: 3px;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-btn {
    width: 100%;
    text-align: left;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover {
    background-color: rgba(255,255,255,0.03);
    color: var(--text-main);
}

.nav-btn.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.logout-btn {
    margin: 0 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.logout-btn:hover {
    background-color: var(--danger-light);
}

/* --- 3. MAIN WINDOW --- */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--bg-page);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-card);
    flex-shrink: 0;
}

.topbar-title {
    font-size: 20px;
    font-weight: 800;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-add-lead-top {
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.btn-add-lead-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--success);
    font-weight: 700;
}

.sync-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.tab-content {
    flex: 1;
    overflow: hidden;
}

/* --- 4. KANBAN PIPELINE BOARD --- */
.pipeline-board {
    display: flex;
    height: 100%;
    overflow-x: auto;
    padding: 24px;
    gap: 14px;
    align-items: stretch;
}

.pipeline-column {
    width: 270px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding-bottom: 12px;
}

.column-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.2px;
}

.stage-new { border-left: 3px solid var(--text-muted); background: rgba(148, 163, 184, 0.05); }
.stage-scheduled { border-left: 3px solid var(--primary); background: rgba(59, 130, 246, 0.05); }
.stage-completed { border-left: 3px solid var(--warning); background: rgba(245, 158, 11, 0.05); }
.stage-offered { border-left: 3px solid #C084FC; background: rgba(192, 132, 252, 0.05); }
.stage-won { border-left: 3px solid var(--success); background: rgba(16, 185, 129, 0.05); }
.stage-lost { border-left: 3px solid var(--danger); background: rgba(239, 68, 68, 0.05); }

.column-count {
    background-color: rgba(255,255,255,0.06);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.column-cards {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 50px;
}

/* Dragging effect on column */
.pipeline-column.drag-over {
    border-color: var(--primary);
    background-color: rgba(59, 130, 246, 0.02);
}

/* Kanban Cards */
.lead-card {
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: grab;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.lead-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background-color: rgba(15, 23, 42, 0.8);
    box-shadow: var(--shadow-md);
}

.lead-card:active {
    cursor: grabbing;
}

.lead-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 4px;
}

.lead-student-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-main);
}

.lead-parent-phone {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.lead-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255,255,255,0.04);
    padding-top: 8px;
    margin-top: 8px;
}

.lead-level-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.level-explorers { background-color: rgba(16, 185, 129, 0.1); color: #10B981; }
.level-stars { background-color: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.level-leaders { background-color: rgba(59, 130, 246, 0.1); color: #3B82F6; }

.lead-trial-indicator {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- 5. DETAILED LIST (TAB 2) --- */
.list-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin: 24px;
    height: calc(100% - 48px);
    display: flex;
    flex-direction: column;
}

.list-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.search-filters {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 480px; /* More compact and elegant width */
}

.list-card-header .search-filters {
    flex: 1;
    max-width: 600px;
}

.search-filters input {
    flex: 1;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.search-filters input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background-color: rgba(15, 23, 42, 0.6);
}

.search-filters select {
    width: 180px;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.search-filters select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background-color: rgba(15, 23, 42, 0.6);
}

/* --- 6. DATA TABLE --- */
.data-table-wrapper {
    overflow-y: auto;
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: rgba(15, 23, 42, 0.2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.data-table th {
    text-align: left;
    padding: 12px 16px;
    background-color: #0F172A;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    vertical-align: middle;
}

.data-table tr:hover td {
    background-color: rgba(255,255,255,0.02);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: rgba(148, 163, 184, 0.1); color: #94A3B8; }
.badge-trial_scheduled { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.badge-trial_completed { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.badge-offered { background: rgba(192, 132, 252, 0.1); color: #C084FC; }
.badge-won { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.badge-lost { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

.btn-action {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.btn-action:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- 7. MODALS STYLES --- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.btn-close-modal {
    font-size: 24px;
    color: var(--text-muted);
}

.btn-close-modal:hover {
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-cancel {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
}

.btn-cancel:hover {
    background-color: rgba(255,255,255,0.03);
    color: var(--text-main);
}

/* --- 8. DETAILED INTERACTION MASASI LAYOUT --- */
.details-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}

.details-form-pane {
    border-right: 1px solid var(--border);
    padding-right: 28px;
}

.details-comm-pane {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-sub-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.dialer-wrapper {
    display: flex;
    gap: 8px;
}

.dial-icon-btn {
    background-color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 16px;
}

.dial-icon-btn:hover {
    background-color: var(--primary);
}

.comm-section {
    background-color: rgba(15, 23, 42, 0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.add-log-box {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 14px;
}

.timeline-wrapper {
    overflow-y: auto;
    max-height: 250px;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-item {
    position: relative;
    padding-left: 24px;
    font-size: 11px;
    line-height: 1.5;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.timeline-item.log-call::before { background-color: var(--primary); }
.timeline-item.log-whatsapp::before { background-color: #25D366; }
.timeline-item.log-email::before { background-color: #C084FC; }
.timeline-item.log-system::before { background-color: var(--success); }
.timeline-item.log-note::before { background-color: var(--warning); }

.timeline-date {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 9px;
    text-transform: uppercase;
}

.timeline-text {
    color: var(--text-muted);
    font-weight: 600;
}

/* Conversion Banner */
.conversion-banner {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.conversion-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.conversion-text strong {
    font-size: 13px;
    color: var(--success);
}

.conversion-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.btn-convert-student {
    background-color: var(--success);
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-convert-student:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

/* --- 9. TOAST NOTIFICATION --- */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 99999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Premium Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.18);
}

/* --- 10. RESALE INTERACTION BALLOON JOURNAL --- */
.resale-details-layout {
    display: grid;
    grid-template-columns: 290px 1fr 1.2fr;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .resale-details-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.resale-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resale-bubble {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    position: relative;
    max-width: 100%;
    align-self: flex-start;
    animation: fadeInSlideUp 0.25s ease-out;
    width: 100%;
    box-sizing: border-box;
}

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

.resale-bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    padding-bottom: 4px;
}

.resale-bubble-text {
    font-size: 11.5px;
    color: var(--text-main);
    line-height: 1.45;
    word-break: break-word;
    font-weight: 600;
}

/* Balloon variants based on log type */
.resale-bubble.log-note {
    background-color: rgba(245, 158, 11, 0.05);
    border-left: 3.5px solid #F59E0B;
}
.resale-bubble.log-call {
    background-color: rgba(59, 130, 246, 0.07);
    border-left: 3.5px solid #3B82F6;
}
.resale-bubble.log-whatsapp {
    background-color: rgba(16, 185, 129, 0.05);
    border-left: 3.5px solid #10B981;
}
.resale-bubble.log-system {
    background-color: rgba(139, 92, 246, 0.05);
    border-left: 3.5px solid #8B5CF6;
}

