/* === Аватары === */
.avatar {
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* === Имена игроков === */
.avatar-name {
    font-weight: 600;
    font-size: 16px;
}

.avatar-name-left {
    display: flex;
    align-items: center;
}

/* === Заголовок сайта === */
.litebans-header, .col-lg-12 {
    text-align: center;
    margin-bottom: 20px;
}

/* === Navbar (верхняя панель) === */
.navbar {
    font-weight: 500;
    background-color: #212529;
    border-bottom: 2px solid #444;
}

.navbar-brand {
    font-weight: 700;
    color: #f8f9fa !important;
}

.navbar-brand:hover {
    color: #ffc107 !important;
}

.navbar-active {
    font-weight: 700;
    color: #ffc107 !important;
}

.navbar-nav .nav-link {
    color: #f8f9fa;
    padding: 0.75rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

.my-lg-0 {
    font-weight: lighter;
}

/* === Таблицы === */
th {
    text-align: center;
    background-color: #343a40;
    color: #fff;
}

table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

table tr {
    transition: background 0.2s ease-in-out;
}

table tr:hover {
    background-color: #f1f3f5;
}

table tr td {
    padding: 0.5rem;
    vertical-align: middle !important;
    text-align: center;
    font-size: 14px;
}

/* === Ссылки === */
a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

/* === Выделение строк === */
tr.hover {
    cursor: pointer;
}

/* === Форма поиска === */
.litebans-check {
    text-align: left;
    margin: 10px 0;
}

.litebans-check-btn {
    margin-left: 8px;
}

.litebans-check-form {
    margin-left: 15px;
}

.litebans-check-output {
    margin-left: 3px;
}

/* === Пагинация === */
.litebans-pager {
    font-size: 1.75rem;
    text-align: center;
    margin: 15px 0;
}

.litebans-pager-number {
    font-size: 1rem;
    margin-top: 10px;
}

.litebans-pager-left,
.litebans-pager-right {
    font-size: 1.5rem;
    color: #212529;
}

.litebans-pager-active {
    color: #0d6efd;
}

.litebans-pager-inactive {
    visibility: hidden;
    pointer-events: none;
    cursor: default;
}

/* === Главная страница === */
.litebans-index {
    text-align: center;
    margin-top: 30px;
}

.litebans-index-main {
    font-weight: bold;
    font-size: 24px;
}

.litebans-index-sub {
    font-weight: 300;
    color: #6c757d;
}

/* === Статусы (баны, муты и т.д.) === */
.badge, .badge-pill {
    font-weight: 500;
    padding: 0.4em 0.7em;
    border-radius: 0.5rem;
    font-size: 0.9em;
}

.litebans-label-container {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.litebans-label-info {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.litebans-label-inactive {
    color: #fff;
    background-color: #6c757d;
}

.litebans-label-expired {
    color: #fff;
    background-color: #adb5bd;
}

.litebans-label-active {
    color: #fff;
    background-color: #dc3545;
}

.litebans-label-permanent,
.litebans-label-ipban,
.litebans-label-ipmute {
    color: #fff;
    background-color: #b02a37;
}

/* === История нарушений === */
.litebans-label-history {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.litebans-label-ban {
    background-color: #842029;
}

.litebans-label-mute {
    background-color: #495057;
}

.litebans-label-warn {
    background-color: #fd7e14;
}

.litebans-label-kick {
    background-color: #f03e3e;
}

/* === Прочее === */
.noselect {
    user-select: none;
}

.noalign-w {
    width: 0;
}

.noalign-h {
    height: 0;
}

body {
  background-color: #121212;
  color: #ffffff;
}

a {
  color: #4FC3F7;
}

.table, .table th, .table td {
  background-color: #1e1e1e;
  color: #fff;
}

.table tr:nth-child(even) {
  background-color: #1f1f1f;
}

.litebans-check-btn {
    background-color: #121212;   /* Очень тёмный фон */
    color: #fff;                 /* Белый текст */
    border: 2px solid #444;      /* Тёмная обводка */
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.litebans-check-btn:hover {
    background-color: #333;      /* Светлее при наведении */
    border-color: #888;
    color: #fff;
    cursor: pointer;
}

.litebans-check-btn:active {
    background-color: #555;      /* При клике */
    border-color: #aaa;
    color: #eee;
}


