/* Layout */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #f8f9fa;
}
main {
    flex: 1 0 auto;
}

.site-header {
    border-bottom: 1px solid #dee2e6;
    background: #fff;
}
.site-name {
    font-weight: 600;
    text-decoration: none;
    color: #212529;
}

.lang-switcher a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 600;
}
.lang-switcher a.active {
    color: #0d6efd;
}

.site-footer {
    border-top: 1px solid #dee2e6;
    background: #fff;
}

.search-bar {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.table-responsive {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.5rem;
}

.pagination {
    flex-wrap: wrap;
    gap: 0.25rem;
}
.pagination .page-item {
    margin-bottom: 0.25rem;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
