/* ===== filters (custom checkboxes) ===== */
.filters label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--fg);
    margin-bottom: 8px
}

.filters input[type="checkbox"] {
    appearance: none;
    margin: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--card);
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: .2s
}

.filters input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: transform .15s ease-in-out;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    background: var(--accent)
}

.filters input[type="checkbox"]:checked::before {
    transform: scale(1)
}

.filters input[type="checkbox"]:hover {
    border-color: var(--accent)
}

/* ===== topbar / hero ===== */
.topbar-wrap {
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);

    color: var(--white);

}



/* hero */
.hero {
    margin-top: 22px
}

.hero .panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .2px
}

.hero .sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: saturate(120%);
}

/* pills + tabs */
.pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 14px
}

.searchbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.searchbar .search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #121517;
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px
}

.search input {
    flex: 1;
    border: none;
    background: transparent;
    color: inherit;
    outline: none
}

.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}
.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px; 
}

.loader-wrapper .loader{
    width: 60px;
    height: 60px;      
    font-size: 60px;  
}

.loader {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 5px;
	color: var(--accent);
	font-size: 18px;
	border-radius: 50%;
	text-align: center;
	animation: spin 1s linear infinite;
	background: conic-gradient(var(--accent), #000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.tab {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #14181a;
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
}

.tab.active {
    background-color: var(--accent);


}

/* ===== layout ===== */
.main {
    margin: 36px auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    padding: 1.5rem 0 0 0;
}



.aside {
    height: fit-content;
    position: sticky;
    top: 14px;
    padding: var(--card-padding, 16px);
    background-color: var(--card);
    border-radius: 12px;
    gap: 12px;
    padding: 12px 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tags-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 6px;
}

.arrow.open {
    transform: rotate(-180deg);
}

.chips {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px
}


.chip {
    background: #14181a;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: .12s
}

.chip:hover {
    color: var(--white);
}

.chip.active {
    background: var(--accent-soft);
    color: var(--yellow-light);
    border-color: var(--accent)
}

/* === SERVER LIST — 100% ширины КОЛОНКИ === */
.list-wrapper {
    grid-column: 2;
    padding: 0
}

@media (max-width:1286px) {
    .list-wrapper {
        grid-column: 1/-1
    }
}

#list {
    display: flex;
    flex-direction: column;
    gap: 16px
}



/* Текст/мета */
.title {
    font-weight: 900;
    margin: 0 0 4px;
    letter-spacing: .2px
}

.meta {
    font-size: 13px;
    color: var(--muted)
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 6px
}

.badge {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #121517;
    color: var(--muted)
}

.actions {
    display: flex;
    gap: 8px;
    align-items: center
}

.cta .btn {
    width: 100px;
    height: 65px;
    font-size: 18px;
    color: var(--white);
}

.btn.play {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--accent-fg);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}


.btn.play:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}


.btn.play:active {
    background: var(--accent-press);
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}


.btn.play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s;
}


.btn.vote {
    background: #1b2023
}

.btn.vote:hover {
    background: #20262a
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px
}

.ri-signal-tower-lin,
.ri-heart-line {
    font-size: 1.35rem;
}

.ri-file-copy-line {
    color: #00ff80;
}

.online {
    color: #00ff80;
}

.offline {
    color: #ff4040;
}

/* === PAGINATION — во всю ширину колонки; на мобиле — в край экрана === */
.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 22px 0 36px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

}

.page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--fg);
    font-size: 14px;
    transition: .15s;
    user-select: none;
    white-space: nowrap;
}

.page:hover {
    background: #20262a;
    cursor: pointer;
}

.page-input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--fg);
    font-size: 14px;
    transition: .15s;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    appearance: none;
}

.page-input::-webkit-outer-spin-button,
.page-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-input[type="number"] {
    -moz-appearance: textfield;
}

.page-input:focus {
    background: #20262a;
    outline: none;
    cursor: text;
}

.page-input:hover {
    background: #20262a;
}


.page.is-active {
    background: var(--accent);
    color: var(--accent-fg);
    border-color: transparent;
    font-weight: 700
}

.page-input {
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.page.is-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none
}

/* === ADAPTIVE === */
@media (max-width:1200px) {
    .container {
        max-width: 100%
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 12px 12px;
        box-sizing: border-box;

    }

    .popup {
        left: 50% !important;
        text-align: center;
    }

    .popup.top0 {
        transform: translate(-50%, 0);
    }

    .main {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px auto;
        padding: 0;
    }

    .nav {}

    .aside {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .list-wrapper {
        grid-column: 1 / -1;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    #list {
        width: 100%;
        overflow-x: hidden;
    }
}


/* @media (max-width:992px) {
    .topbar {
        flex-wrap: wrap
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch
    }

    .hero .panel {
        padding: 16px
    }

    .hero h1 {
        font-size: 28px
    }

    .main {
        margin: 28px auto;
        grid-template-columns: 1fr;
        gap: 16px
    }

    .aside {
        position: static
    }

    .pills,
    .tabs,
    .chips {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 6px
    }
} */

/* @media (max-width:768px) {
    .container {
        padding: 0
    }
    .hero h1 {
        font-size: 24px
    }

    .hero .sub {
        font-size: 13px
    }

    .searchbar {
        flex-direction: column;
        gap: 8px
    }

    .searchbar .search {
        width: 100%
    }


    #list .card .banner {
        aspect-ratio: 16/9
    }

    /* адекватная высота баннера на мобиле */
.actions {
    justify-content: space-between
}

.actions .btn {
    flex: 1;
    min-width: 48%
}

.badge {
    font-size: 11px
}

.meta {
    font-size: 12px
}

/* Пагинация в край экрана */
.pagination {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}


@media (max-width:480px) {
    .logo span {
        font-size: 16px
    }

    .hero h1 {
        font-size: 22px
    }

    .btn,
    .tab,
    .pill,
    .chip {
        padding: 10px 12px
    }

    #list .card .banner {
        border-radius: 10px
    }

    .actions {
        gap: 8px
    }

    .actions .btn {
        min-width: 100%
    }


}

@media (hover:none) {
    .btn:hover {
        background: #20262a
    }

    .btn,
    .tab,
    .pill,
    .chip {
        min-height: 44px
    }
}

/* iOS safe-area */
.topbar-wrap {}




/*- поверх сру 


/* 1) LIST: full-bleed только на мобилке */
@media (max-width:768px) {
    .container {}

    .list-wrapper {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 12px 12px;
    }

    .pagination {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 12px 12px;
    }

    /* на мобиле карточка “в край” — без внешних скруглений */
    #list .card {
        border-radius: 10px
    }
}

/* ====== LIST LAYOUT ====== */
#list {
    max-width: var(--list-max);
    margin: 0 auto
}

.pagination {

    margin-left: auto;
    margin-right: auto
}

/* Мобилка — на всю ширину, отступы по краям */
@media (max-width:768px) {

    #list,
    .pagination {
        max-width: none;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 12px 12px
    }
}

/* ====== CARD ====== */
#list .card {
    padding: var(--card-padding, 16px);
    border-radius: 12px;
    gap: 12px;
    transition: transform .12s, box-shadow .12s
}

#list .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35)
}

.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    background-color: var(--card);
}

.card .banner {
    flex: 0 0 468px;
    display: flex;
    flex-direction: column;

}

.card .banner img {
    width: 100%;
    border-radius: 8px;
}


.card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.col-left,
.col-middle,
.card-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-left {
    flex: 0 0 80px;
}

.col-middle {
    flex: 1;
}

.card-actions {
    flex: 0 0 200px;
    align-items: flex-end;
}



/* ====== BANNER ====== */
.banner {
    height: 60px;
    width: 470px;
    position: relative;
    border-radius: 12px;
    background: #101315;
    overflow: hidden;
}

.banner img,
.banner video {
    width: 100%;
    object-fit: cover;
}

.banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 58%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .8) 100%);
    pointer-events: none
}

.banner-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: var(--white);
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: saturate(140%) blur(4px)
}

@media (max-width:768px) {
    .banner {
        height: clamp(140px, 56vw, 260px)
    }
}

/* ====== BODY LAYOUT ====== */


/* Левая колонка — текст */
.card-main {
    flex: 1 1 auto;
    min-width: 0
}

.card-main .title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px
}

.card-main .meta {
    font-size: 13px;
    margin-bottom: 6px
}

.title {
    color: white;
}

.no-servers {
    text-align: center;
    color: var(--muted);
}

.card-main .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px
}

.card-main .badge {
    background: #161a1e;
    border: 1px solid var(--border, #262a2e);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px
}

.card-main .description {
    overflow-wrap: anywhere
}

/* Правая колонка — CTA */
.card-cta {
    flex: 0 0 auto;
    display: grid;
    grid-auto-flow: row;
    gap: 10px;
    min-width: 220px
}

.cta-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px
}

.cta-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted, #a7a7a7);
    white-space: nowrap
}

.cta-item .btn {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cta span {
    white-space: nowrap;
}

.btn.ghost {
    background: #14181a;
    border: 1px solid var(--border, #262a2e)
}

.btn.ghost:hover {
    background: #20262a
}

/* Статусы */
.dot {
    inline-size: 10px;
    block-size: 10px;
    border-radius: 50%
}

.ok {
    background: #16a34a
}

.warn {
    background: #f59e0b
}

.down {
    background: #ef4444
}

/* Адаптив: одна колонка, кнопки тянутся */
@media (max-width:768px) {
    .card-body {
        flex-direction: column
    }

    .card-cta {
        grid-template-columns: 1fr;
        min-width: 0
    }

    .cta-item .btn {
        width: 100%
    }
}

/* Верхний ряд: слева название, справа описание+теги */
.row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.col-icon {
    width: 56px;
    height: 56px;
    border-radius: 6px;
}

.col-left {
    width: 56px;
    height: 56px;
    text-align: center;
    align-items: center;
}

.col-middle .title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
}

.col-middle .meta {
    font-size: 13px;
}



.col-right .description {
    font-size: 14px;
}

.col-right .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.col-right .badge {
    background: #161a1e;
    border: 1px solid var(--border, #262a2e);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}


.card-actions {
    display: grid;
    gap: 8px;
}

.card-actions .cta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.card-actions .btn {
    height: 32px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 8px;
}

/* Статусы */
.dot {
    inline-size: 10px;
    block-size: 10px;
    border-radius: 50%
}

.ok {
    background: #16a34a
}

.warn {
    background: #f59e0b
}

.down {
    background: #ef4444
}

/* Адаптив: в колонку */
@media(max-width:768px) {
    .row-top {
        grid-template-columns: 1fr;
    }

    .card-actions .cta {
        flex-direction: column;


    }
}



/* --- Sidebar: компактные чекбоксы --- */
.aside .box-b {
    padding: 12px 12px 14px;

}

.aside .filters {
    display: grid;
    row-gap: 0px;
    /* было жирно — стало плотно */
    margin: 0 0 8px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--border);
}

.aside .filters label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 2px 0;
    /* убираем лишние внутренние */
    line-height: 1.2;
}

.aside .filters input[type="checkbox"] {
    width: 16px;
    height: 16px;
    /* компактнее, но кликабельно */
    border-width: 2px;
}

/* --- Теги: нормальное расположение без обрезаний --- */
.aside .chips {
    display: flex;
    flex-wrap: wrap;
    /* вместо grid: ничего не режется */
    gap: 8px;
    /* ровные зазоры */
    margin-top: 10px;
}

.aside .chip {
    flex: 0 0 auto;
    /* ширина по контенту */
    padding: 6px 10px;
    border-radius: 999px;
    background: #14181a;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    /* длинные — не переносятся, но не обрезаются сеткой */
}

.aside .chip:hover {
    color: #fff
}

.aside .chip.active {
    background: var(--accent-soft);
    color: #ffd7a8;
    border-color: var(--accent)
}

/* чуть ужмём заголовок блока */
.aside .box-h {
    padding: 10px 12px
}

.popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--card);
    color: var(--text);
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
    font-weight: 500;
}

.top0 {
    opacity: 1;
    transform: translateY(0);
}

.popup.top-center {
    bottom: 20px;
    left: 50%;
    background: var(--card);
    color: var(--text);
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(100px) translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
    font-weight: 500;
}

.popup.top-center.top0 {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== Modal base ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay[aria-hidden="false"] {
    display: flex
}

.modal {
    position: relative;
    width: min(540px, 100%);
    background: var(--card);
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px
}

.modal-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: none
}

.modal-sub {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #14181a;
    color: var(--white);
    cursor: pointer;
}

.modal-close:hover {
    background: #20262a
}

/* table-ish stats */
.stat-table {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px
}

.stat-table .row {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 8px;
    padding: 10px 12px
}

.stat-table .row.head {
    background: #14181a;
    color: #cbd5e1;
    font-weight: 600
}

.stat-table .row:not(.head) {
    background: #121517
}

.stat-table .srv {
    display: flex;
    align-items: center;
    gap: 8px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px
}

.field input {
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #14181a;
    padding: 0 12px;
    color: var(--fg);
}

.hint {
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px
}

.modal-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 14px
}

/* buttons reuse */
.btn.primary {
    background: var(--accent);
    border-color: transparent;
    color: var(--white);
    font-weight: 700
}

.btn.primary:hover {
    background: var(--accent-press)
}

.btn.ghost {
    background: #14181a;
    border: 1px solid var(--border)
}

.btn.ghost:hover {
    background: #20262a
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #14181a;
    color: var(--white);
    cursor: pointer;
}

.modal-close:hover {
    background: #20262a;
}

@media (max-width: 992px) {
    .main {
        grid-template-columns: minmax(100%, 100%) 1fr;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .main {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px auto;
        padding: 0 12px;
    }

    #list .card,
    .card {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        gap: 12px;
        padding: var(--card-padding, 16px);
        border-radius: 12px;
        background-color: var(--card);
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .card .banner {
        flex: 0 0;
        width: 100%;
        height: auto;
        min-height: 60px;
        max-height: 260px;
        border-radius: 12px;
        background: #101315;
        overflow: hidden;
    }

    .card .banner img,
    .card .banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* .banner {
        display: none !important;
    } */


    .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .col-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .col-icon,
    .col-left {
        display: none;
        width: 0%;
        height: 0%;
    }

    .col-icon {
        width: 80px;
        height: 80px;
        border-radius: .5rem;
        object-fit: cover;
    }

    .col-icon--placeholder {
        width: 80px;
        height: 80px;
        border-radius: .5rem;
        background-color: var(--first-color-light);
    }

    .col-middle {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .title {
        font-size: 1rem;
        color: var(--white-color);
    }

    .meta {
        font-size: .85rem;
        color: var(--text-color-light);
    }

    .description {
        font-size: .9rem;
        color: var(--text-color);
        max-width: 250px;
        text-align: center;
    }

    .badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: .3rem;
        display: none;
    }

    .badge {
        background: var(--first-color);
        color: var(--dark-color);
        font-size: .75rem;
        padding: .3rem .6rem;
        border-radius: .25rem;
    }

    .card-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: .5rem;
        flex: 0 0;
        padding-top: .5rem;
    }

    .cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .25rem;
    }

    .dot {
        width: .6rem;
        height: .6rem;
        border-radius: 50%;
        background-color: red;
    }

    .dot.ok {
        background-color: #4CAF50;
    }

    .btn {
        font-size: .85rem;
        padding: .4rem .8rem;
        border-radius: .25rem;
    }
    .card-actions .cta {
        .card-actions {
    display: flex;               
    justify-content: space-between; 
    align-items: flex-end;       
    padding: 10px 0;
}

.card-actions .cta {
    display: flex;               
    align-items: center;         
    gap: 8px;                  
}

.card-actions .cta button {
    margin-left: auto;        
}
    }

}

.col-icon--placeholder {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    background: #000;
    border: 1px solid var(--border);
    display: block;
}

@media (max-width:480px) {
    .stat-table .row {
        grid-template-columns: 1fr 90px 70px
    }

    .card .banner {
        min-height: 0px;
    }
}

@media (max-width:1286px) {
    .main {
        grid-template-columns: 1fr;
    }

    .aside {
        position: static;
        width: 100%;
        max-width: 100%;
    }
}