:root {
    --color-primary: #0f5b99;
    --color-primary-dark: #0a4879;
    --color-accent: #1d7fd0;
    --color-text: #1f2937;
    --color-muted: #5b6470;
    --color-bg: #eef3f8;
    --color-surface: #ffffff;
    --color-border: #d6e0ea;
    --color-error-bg: #ffe8e8;
    --color-error-text: #9b1c1c;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}
html[xmlns^="http"] {
    overflow-y: scroll;
	height: 100%;
}


html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    /*background: linear-gradient(180deg, #f5f8fb 0%, var(--color-bg) 100%);*/
	background: radial-gradient(1200px 700px at 10% -10%, rgba(96, 165, 250, .20), transparent 60%), radial-gradient(1000px 600px at 100% 10%, rgba(34, 197, 94, .18), transparent 60%), var(--bg);
    color: var(--color-text);
	height: calc(100% - 150px);
}

img {
    max-width: 100%;
}

.content img.fr-fic { display: none; }

.site-header {
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
}

.site-brand__logo {
    width: 274px;
    max-width: 100%;
    height: auto;
    display: block;
}

.site-brand__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.page-wrap {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
	min-height: 100%;
}

.container {
    background: var(--color-surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 224, 234, 0.7);
}

h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 2rem;
    color: var(--color-primary-dark);
}

p {
    line-height: 1.65;
}

.table-wrap {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.table th {
    background: #f6f9fc;
    color: var(--color-primary-dark);
    font-size: 0.98rem;
}

.table tbody tr:hover {
    background: #f9fbfd;
}

.table__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.table__link:hover {
    text-decoration: underline;
}

.meta {
    color: var(--color-muted);
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.content {
    line-height: 1.75;
}

.content p:first-child {
    margin-top: 0;
}

.mdb-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 11px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(13, 96, 159, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.mdb-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(13, 96, 159, 0.28);
    opacity: 0.96;
}

.mdb-button::before {
 
}


.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 11px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(13, 96, 159, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.back-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(13, 96, 159, 0.28);
    opacity: 0.96;
}

.back-button::before {
    content: '←';
    font-size: 1rem;
}

.error {
    background: var(--color-error-bg);
    color: var(--color-error-text);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #f6c6c6;
}

.empty {
    color: var(--color-muted);
    padding: 8px 0;
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid var(--color-border);
    background: #fff;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 28px;
}

.site-footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer__nav a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.site-footer__nav a:hover {
    text-decoration: underline;
}

.site-footer__divider {
    color: #8ba0b6;
}

@media (max-width: 760px) {
    .site-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-brand__title {
        font-size: 1.5rem;
    }

    .page-wrap {
        margin: 24px auto;
        padding: 0 16px;
    }

    .container {
        padding: 20px;
    }
}

body#includeWebsite {
	background-color: #FFF;
	padding: 0px;
	margin: 0px;
}

body#includeWebsite .page-wrap { max-width: 100%; margin: 0px; padding: 0px; }
