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

:root {
    --sidebar-bg: #1b2a34;
    --sidebar-text: #d7e1e8;
    --accent: #ff8f3d;
    --surface: #f7f5f0;
}

body {
    background: var(--surface);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

.sidebar {
    width: 240px;
    background: linear-gradient(160deg, #12212b, #1f3a46);
    min-height: 100vh;
    color: var(--sidebar-text);
}

.sidebar .brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.sidebar .nav-link {
    color: var(--sidebar-text);
    border-radius: 6px;
    margin-bottom: 6px;
}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.topbar {
    background: #20323d;
    color: #fff;
    padding: 16px 24px;
}

.topbar-title {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.content {
    min-height: calc(100vh - 64px);
}

.badge-status {
    font-size: 12px;
}

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

.translation-box {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-soft {
    background: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .split-panel {
        grid-template-columns: 1fr;
    }
    .sidebar {
        display: none;
    }
}
