:root {
    --bg: #f3f7fb;
    --card: #ffffff;
    --accent: #0b75e6;
    --muted: #98a3b3;
    --border: #e6eef6;
    --radius: 12px;
    --shadow: 0 12px 30px rgba(15,60,120,0.06);
    --input-border: #d7e3f0;
}

/* Базовый фон и шрифт для auth-страниц */
body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    background: var(--bg);
    color: #0f1724;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.d-flex.flex-column.h-100 {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, system-ui, sans-serif;
    background: #f3f7fb;
}

.layout-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

/* Левый сайдбар */
.layout-sidebar {
    background: #fff;
    border-right: 1px solid #e5e5e5;
    padding: 28px 18px;
}

.layout-sidebar h1 {
    font-size: 22px;
    margin: 0 0 10px;
}

.layout-sidebar nav {
    margin-top: 20px;
}

.layout-sidebar nav a {
    display: block;
    padding: 8px 12px;
    margin: 6px 0;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    text-decoration: none;
    color: #111827;
}

/* Правая панель уведомлений */
.header-notice {
    border-left: 1px solid #e6e6e6;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

/* Основной контент между сайдбаром и уведомлениями */
main {
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
}

main.flex-shrink-0 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Футер */
.site-footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(11, 60, 120, 0.04);
    padding: 26px 40px;
    margin-top: 20px;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer a {
    color: #0a71f2;
    text-decoration: none;
}

.site-footer .footer-cta {
    display: inline-block;
    padding: 8px 16px;
    background: #0a71f2;
    color: #ffffff;
    border-radius: 6px;
}

.site-footer p {
    margin: 4px 0;
}

.site-footer .footer-copy {
    text-align: center;
    margin-top: 40px;
}
