/* Надстройка над шаблоном kertas. Подключается последней.
   Откат: удалить <link> из views/header.php. */

/* 1. Контент не растягивается на весь экран и центрируется */
#global-content { max-width: 1600px; margin-left: auto; margin-right: auto; }

/* 2. Читаемость таблиц: убираем провал контраста в чётных строках */
#global-content table tbody tr td,
#global-content table tbody tr th { color: #d8d8d8; }
#global-content table tbody tr:nth-child(odd)  { background: rgba(255,255,255,.035); }
#global-content table tbody tr:nth-child(even) { background: transparent; }
#global-content table tbody tr:hover td        { background: rgba(255,193,7,.10); }
#global-content table thead th {
    color: #9aa0a6; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.12);
}

/* 3. Единый регистр и вес заголовков страниц */
#global-content h1, #global-content h2 {
    text-transform: none; font-weight: 600; letter-spacing: 0; margin-bottom: 1.25rem;
}

/* 4. Кнопки одного регистра */
#global-content .btn { text-transform: none; }

/* 5. Немного воздуха и мягкие углы */
#global-content section.content { padding-top: 1rem; }
#global-content .card, #global-content .modal-content { border-radius: .5rem; }
