/**
 * HRIS Management System — Custom Stylesheet (Material Admin Pro Theme)
 * Framework: PHP Native 8.2 MVC
 * Design Language: Material Design 3 / Material Admin Pro
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Theme Variables --- */
:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Colors (Light Mode) */
    --primary: #6366f1; /* Modern Royal Indigo */
    --primary-hover: #4f46e5;
    --primary-light: #e0e7ff;
    
    --secondary: #10b981; /* Emerald Success */
    --secondary-hover: #059669;
    --secondary-light: #d1fae5;
    
    --warning: #f59e0b; /* Amber */
    --warning-light: #fef3c7;
    
    --danger: #ef4444; /* Rose */
    --danger-light: #fee2e2;

    --info: #06b6d4; /* Cyan */
    --info-light: #ecfeff;
    
    --bg-app: #f8fafc; /* Very light slate */
    --bg-card: #ffffff;
    --bg-sidebar: #0f172a; /* Slate 900 (Dark Sidebar always for Material look) */
    --text-sidebar: #94a3b8;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(99, 102, 241, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(99, 102, 241, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Colors (Dark Mode) */
    --bg-app: #020617; /* Slate 950 */
    --bg-card: #0b0f19; /* Slate 900 */
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    --border-color: #1e293b;
    
    --primary-light: rgba(99, 102, 241, 0.15);
    --secondary-light: rgba(16, 185, 129, 0.15);
    --warning-light: rgba(245, 158, 11, 0.15);
    --danger-light: rgba(239, 68, 68, 0.15);
    --info-light: rgba(6, 182, 212, 0.15);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.25);
}

/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-app);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --- Layout Structure --- */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: var(--bg-sidebar);
    color: var(--text-sidebar);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: width var(--transition-normal);
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-logo .logo-accent {
    color: var(--primary);
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 0.75rem;
}

.sidebar-menu::-webkit-scrollbar {
    width: 4px;
}
.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.menu-section-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 1.25rem 0 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.menu-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
}

.menu-item.active {
    color: #ffffff;
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.menu-item .menu-icon {
    font-size: 1.25rem;
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Main Content Workspace */
.main-workspace {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Header */
.top-navbar {
    height: 70px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 90;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.role-badge-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.icon-btn:hover {
    background-color: var(--bg-app);
    color: var(--text-primary);
}

.icon-btn .badge-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.user-profile-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.user-profile-widget:hover {
    background-color: var(--bg-app);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-info {
    font-size: 0.8rem;
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
}

.user-role {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Page Container */
.page-content {
    padding: 2rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* --- Material Components --- */

/* Section Title */
.page-title-area {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.material-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.material-card.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.4;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.35rem;
    font-weight: 500;
}

.stat-trend {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trend-up { color: var(--secondary); }
.trend-down { color: var(--danger); }

/* --- Split Panel (Workflow + Simulator) --- */
.workflow-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .workflow-workspace {
        grid-template-columns: 1fr;
    }
}

/* Documentation Panel */
.doc-panel {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
}

.doc-markdown h1, .doc-markdown h2, .doc-markdown h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.doc-markdown h1 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.doc-markdown h2 {
    font-size: 1.25rem;
}

.doc-markdown p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.doc-markdown table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.doc-markdown th, .doc-markdown td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.doc-markdown th {
    background-color: var(--bg-app);
    font-weight: 600;
    color: var(--text-primary);
}

.doc-markdown td {
    color: var(--text-secondary);
}

.doc-markdown code {
    background-color: var(--bg-app);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary);
}

/* Simulator Panel */
.simulator-panel {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--primary);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 90px;
}

.simulator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.simulator-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulator-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- Simulators Component Styling --- */

/* Inputs & Form Groups */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-app);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background-color: var(--bg-card);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--bg-app);
}

/* Clock In Button Action */
.clock-button-outer {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0.05);
}

.clock-button-outer:hover {
    box-shadow: 0 0 0 20px rgba(99, 102, 241, 0.1);
    transform: scale(1.03);
}

.clock-button-outer.clocked-out {
    background-color: var(--danger-light);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.05);
}

.clock-button-outer.clocked-out:hover {
    box-shadow: 0 0 0 20px rgba(239, 68, 68, 0.1);
}

.clock-button-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.clocked-out .clock-button-inner {
    background-color: var(--danger);
}

.clock-button-inner span {
    font-size: 2.2rem;
}

.clock-button-inner label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

/* Logs and History */
.list-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--bg-app);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.65rem;
}

.badge-success { background-color: var(--secondary-light); color: var(--secondary); }
.badge-danger { background-color: var(--danger-light); color: var(--danger); }
.badge-warning { background-color: var(--warning-light); color: var(--warning); }
.badge-info { background-color: var(--info-light); color: var(--info); }

/* Kanban Board Recruitment */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    overflow-x: auto;
}

.kanban-column {
    background-color: var(--bg-app);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    min-height: 400px;
    border: 1px solid var(--border-color);
}

.kanban-column-header {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-column-header .count-badge {
    background-color: var(--border-color);
    color: var(--text-secondary);
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
    font-size: 0.7rem;
}

.kanban-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.75rem;
    cursor: grab;
    transition: all var(--transition-fast);
}

.kanban-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.kanban-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.kanban-card p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Org Chart Tree View */
.org-chart-wrapper {
    overflow: auto;
    background-color: var(--bg-app);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
}

.org-tree {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.org-node {
    background-color: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.org-node img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-light);
}

.org-node h4 {
    font-size: 0.85rem;
    font-weight: 700;
}

.org-node p {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.org-children {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
    position: relative;
}

.org-children::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background-color: var(--primary);
    transform: translateX(-50%);
}

.org-child-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Simple visual branch connector */
.org-children::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--primary);
}

/* Directory Grid */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.directory-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.directory-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.directory-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.75rem auto;
}

.directory-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.directory-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* System Dialog Alert */
.sim-alert {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

.sim-alert-success {
    background-color: var(--secondary-light);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.sim-alert-danger {
    background-color: var(--danger-light);
    color: var(--danger);
    border: 1px solid var(--danger);
}

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

/* Interactive matrix checkboxes */
.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.matrix-table th, .matrix-table td {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.matrix-table th:first-child, .matrix-table td:first-child {
    text-align: left;
}

.matrix-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.matrix-highlight {
    background-color: var(--primary-light) !important;
}

/* Slip Gaji Styled Mock */
.slip-container {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    background-color: #ffffff;
    color: #333333;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
}

.slip-header {
    text-align: center;
    border-bottom: 2px dashed #333333;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.slip-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.slip-divider {
    border-bottom: 1px dashed #333333;
    margin: 0.5rem 0;
}

.slip-total {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Mermaid Custom Theme Styling overrides */
.mermaid {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    border: 1px solid var(--border-color);
    margin: 1rem 0;
}

/* Learning Path Timeline */
.learning-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.learning-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-step {
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 2px solid var(--bg-card);
}

.timeline-step.completed::before {
    background-color: var(--secondary);
}

.timeline-step.active::before {
    background-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-content {
    background-color: var(--bg-app);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}
