:root {
    color-scheme: dark;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0b1120;
    color: #e5e7eb;
}

a {
    color: #93c5fd;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(100%, 420px);
    padding: 36px;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.brand {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

h1,
h2,
p {
    margin-top: 0;
}

.login-card h1 {
    margin-top: 24px;
    margin-bottom: 8px;
}

label {
    display: block;
    margin: 18px 0 8px;
    font-size: 14px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 13px 14px;
    color: #fff;
    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 10px;
    outline: none;
}

input:focus {
    border-color: #60a5fa;
}

button {
    width: 100%;
    margin-top: 24px;
    padding: 13px 18px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: #2563eb;
    cursor: pointer;
    font-weight: 700;
}

.alert {
    margin: 20px 0;
    padding: 12px 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.45);
    border: 1px solid #7f1d1d;
    border-radius: 10px;
}

.muted {
    color: #94a3b8;
}

.topbar {
    min-height: 68px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111827;
    border-bottom: 1px solid #253047;
}

.topbar strong {
    margin-right: 14px;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a7f3d0;
    font-size: 14px;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
}

.channel-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.channel-card,
.chart-card,
.empty-state {
    background: #111827;
    border: 1px solid #253047;
    border-radius: 16px;
}

.channel-card {
    padding: 22px;
}

.channel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.channel-header h2 {
    margin-bottom: 4px;
    font-size: 20px;
}

.channel-header small {
    color: #64748b;
}

.online-badge {
    padding: 6px 9px;
    color: #86efac;
    background: rgba(22, 101, 52, 0.35);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.metric {
    padding: 16px;
    background: #0b1220;
    border-radius: 12px;
}

.metric span {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.metric strong {
    display: block;
    font-size: 24px;
}

.chart-card {
    margin-top: 22px;
    padding: 24px;
}

.card-heading {
    margin-bottom: 20px;
}

.card-heading h2 {
    margin-bottom: 6px;
    font-size: 19px;
}

.chart-wrapper {
    height: 340px;
}

.empty-state {
    padding: 30px;
    color: #94a3b8;
}

@media (max-width: 700px) {
    .topbar {
        padding: 16px 20px;
        align-items: flex-start;
        gap: 18px;
    }

    .topbar-user {
        align-items: flex-end;
        flex-direction: column;
        gap: 5px;
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

.channel-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.channel-card-link:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: #93c5fd;
}

.summary-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.summary-card {
    padding: 20px;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 15px;
}

.summary-card span {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 13px;
}

.summary-card strong {
    display: block;
    font-size: 27px;
}


.section-heading {
    margin-top: 34px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin-bottom: 6px;
}

.dashboard-summary {
    margin-bottom: 10px;
}

.channel-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.channel-card-link:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.metric-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-action strong {
    color: #93c5fd;
    font-size: 17px;
}

.channel-list {
    display: grid;
    gap: 12px;
}

.channel-row {
    display: block;
    padding: 18px 20px;
    color: inherit;
    text-decoration: none;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 14px;
    transition:
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.channel-row:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.channel-row-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.channel-row-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.channel-row-title h3 {
    margin: 0 0 3px;
    font-size: 18px;
}

.channel-row-title small {
    color: #64748b;
}

.channel-row-metrics {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(110px, 1fr))
        minmax(130px, auto);
    align-items: center;
    gap: 14px;
}

.channel-row-metrics > div {
    min-width: 0;
}

.channel-row-metrics span {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 12px;
}

.channel-row-metrics strong {
    display: block;
    font-size: 17px;
}

.channel-row-action {
    justify-self: end;
    color: #93c5fd;
    font-weight: 700;
    white-space: nowrap;
}

.channel-row-action span {
    display: inline;
    margin-left: 4px;
    color: inherit;
}

@media (max-width: 980px) {
    .channel-row-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .channel-row-action {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .channel-row {
        padding: 16px;
    }

    .channel-row-main {
        align-items: flex-start;
    }

    .channel-row-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}


.channel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    color: #dbeafe;
    background: #172033;
    border: 1px solid #334155;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.back-button:hover {
    border-color: #3b82f6;
    background: #1d2940;
}

.channel-navigation .breadcrumb {
    margin: 0;
}

@media (max-width: 700px) {
    .channel-navigation {
        align-items: flex-start;
        flex-direction: column;
    }
}

.filter-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding: 22px;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 16px;
}

.date-filter {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.date-filter label {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.date-filter input {
    display: block;
    min-width: 160px;
    margin-top: 7px;
}

.date-filter button {
    width: auto;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .filter-card,
    .date-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .date-filter input {
        width: 100%;
    }
}

.admin-module-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.admin-module-card,
.admin-related-card {
    display: block;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 15px;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.admin-module-card:hover,
.admin-related-card:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.admin-module-card span,
.admin-related-card span {
    display: block;
    margin-bottom: 9px;
    color: #94a3b8;
    font-size: 13px;
}

.admin-module-card strong,
.admin-related-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.admin-module-card small {
    color: #64748b;
}

.admin-heading {
    gap: 24px;
}

.primary-link-button,
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.primary-link-button {
    color: #fff;
    background: #2563eb;
}

.secondary-link-button {
    color: #dbeafe;
    background: #172033;
    border: 1px solid #334155;
}

.admin-toolbar {
    margin-bottom: 18px;
}

.admin-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-search-form input {
    max-width: 420px;
}

.admin-search-form button {
    width: auto;
    margin: 0;
}

.admin-table-card,
.admin-form-card {
    background: #111827;
    border: 1px solid #253047;
    border-radius: 16px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 17px;
    text-align: left;
    border-bottom: 1px solid #253047;
    white-space: nowrap;
}

.admin-table th {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.table-subtext {
    display: block;
    margin-top: 5px;
    color: #64748b;
}

.table-actions a {
    font-weight: 700;
}

.status-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.status-active {
    color: #86efac;
    background: rgba(22, 101, 52, 0.35);
}

.status-disabled {
    color: #fca5a5;
    background: rgba(127, 29, 29, 0.35);
}

.admin-form-card {
    padding: 24px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
}

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.checkbox-field input {
    width: auto;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.form-actions button {
    width: auto;
    margin: 0;
}

.success-message {
    margin-bottom: 20px;
    padding: 13px 15px;
    color: #a7f3d0;
    background: rgba(6, 78, 59, 0.42);
    border: 1px solid #065f46;
    border-radius: 10px;
}

.form-error-list {
    margin: 0;
    padding-left: 18px;
}

.admin-related-actions {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-search-form,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-search-form input {
        max-width: none;
    }
}

.admin-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-filter-form input {
    max-width: 420px;
}

.admin-filter-form select {
    min-width: 220px;
}

.admin-filter-form button {
    width: auto;
    margin: 0;
}

select {
    width: 100%;
    padding: 13px 14px;
    color: #fff;
    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 10px;
    outline: none;
    font: inherit;
}

select:focus {
    border-color: #60a5fa;
}

.role-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.role-admin {
    color: #c4b5fd;
    background: rgba(91, 33, 182, 0.35);
}

.role-client {
    color: #93c5fd;
    background: rgba(30, 64, 175, 0.35);
}

@media (max-width: 800px) {
    .admin-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-filter-form input {
        max-width: none;
    }

    .admin-filter-form select {
        min-width: 0;
    }
}

.admin-form-full {
    grid-column: 1 / -1;
}

.field-help {
    display: block;
    margin-top: 8px;
    color: #64748b;
    line-height: 1.5;
}

.table-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.table-action-button:hover {
    transform: translateY(-1px);
}

.table-action-primary {
    color: #ffffff;
    background: #2563eb;
    border: 1px solid #3b82f6;
}

.table-action-primary:hover {
    background: #1d4ed8;
}

.table-action-secondary {
    color: #dbeafe;
    background: #172033;
    border: 1px solid #334155;
}

.table-action-secondary:hover {
    background: #1e293b;
    border-color: #60a5fa;
}

.timezone-summary {
    margin: 10px 0 0;
    color: #94a3b8;
    font-size: 13px;
}

.timezone-summary strong {
    color: #dbeafe;
}

.table-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.table-action-button:hover {
    transform: translateY(-1px);
}

.table-action-primary {
    color: #ffffff;
    background: #2563eb;
    border: 1px solid #3b82f6;
}

.table-action-primary:hover {
    background: #1d4ed8;
}

.table-action-secondary {
    color: #dbeafe;
    background: #172033;
    border: 1px solid #334155;
}

.table-action-secondary:hover {
    background: #1e293b;
    border-color: #60a5fa;
}

.admin-channel-list {
    display: grid;
    gap: 12px;
}

.admin-channel-row {
    display: grid;
    grid-template-columns:
        minmax(230px, 1.3fr)
        minmax(650px, 3fr)
        32px;
    align-items: center;
    gap: 24px;
    padding: 20px 22px;
    color: inherit;
    text-decoration: none;
    background: #111827;
    border: 1px solid #253047;
    border-radius: 15px;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.admin-channel-row:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.admin-channel-identity {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.admin-channel-indicator {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.admin-channel-indicator.is-active {
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.admin-channel-indicator.is-disabled {
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12);
}

.admin-channel-identity h2 {
    margin: 0 0 5px;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-channel-identity p {
    margin: 0;
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-channel-identity p span {
    margin: 0 4px;
}

.admin-channel-metrics {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(105px, 1fr));
    gap: 18px;
}

.admin-channel-metrics > div {
    min-width: 0;
}

.admin-channel-metrics span {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
}

.admin-channel-metrics strong {
    display: block;
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-channel-metrics .activity-value {
    color: #cbd5e1;
    font-size: 13px;
}

.admin-channel-arrow {
    color: #60a5fa;
    font-size: 25px;
    text-align: right;
}

@media (max-width: 1180px) {
    .admin-channel-row {
        grid-template-columns: 1fr 30px;
    }

    .admin-channel-metrics {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .admin-channel-arrow {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 760px) {
    .admin-channel-row {
        padding: 17px;
    }

    .admin-channel-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .admin-channel-metrics {
        grid-template-columns: 1fr;
    }
}

.admin-detail-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.danger-button {
    width: auto;
    margin: 0;
    padding: 11px 15px;
    color: #ffffff;
    background: #b91c1c;
    border: 1px solid #dc2626;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.danger-button:hover {
    background: #991b1b;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(4px);
}

.modal-backdrop[hidden] {
    display: none;
}

.confirmation-modal {
    width: min(100%, 480px);
    padding: 26px;
    background: #111827;
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.confirmation-modal h2 {
    margin-bottom: 12px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.secondary-modal-button {
    width: auto;
    margin: 0;
    padding: 11px 15px;
    color: #dbeafe;
    background: #172033;
    border: 1px solid #334155;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 700px) {
    .admin-detail-actions,
    .modal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-detail-actions a,
    .admin-detail-actions button,
    .modal-actions button {
        width: 100%;
    }
}


/* =========================================================
   PANEL ADMINISTRATIVO DEL CANAL
   ========================================================= */

.channel-admin-container {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
    padding-top: 26px;
    padding-bottom: 50px;
}

.channel-admin-container .channel-navigation {
    margin-bottom: 24px;
}

.channel-admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.channel-admin-heading {
    min-width: 0;
}

.channel-admin-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.channel-admin-title-row h1 {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.channel-admin-header p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 9px 0 0;
    color: #94a3b8;
    font-size: 14px;
}

.channel-admin-header p span {
    color: #475569;
}

/* Pestañas */

.channel-tabs {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px;
    overflow-x: auto;
    background: rgba(17, 24, 39, 0.94);
    border: 1px solid #26334a;
    border-radius: 15px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    scrollbar-width: none;
}

.channel-tabs::-webkit-scrollbar {
    display: none;
}

.channel-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    min-height: 43px;
    padding: 0 16px;
    color: #94a3b8;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.channel-tab:hover {
    color: #e2e8f0;
    background: #172033;
    border-color: #2b3a54;
}

.channel-tab.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );
    border-color: #60a5fa;
    box-shadow:
        0 8px 18px rgba(37, 99, 235, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.channel-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 15px;
    line-height: 1;
}

.channel-tab-content {
    margin-top: 20px;
}

/* Visión general */

.channel-overview-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(320px, 0.8fr);
    gap: 20px;
}

.channel-panel {
    min-width: 0;
    padding: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 39, 0.98),
            rgba(13, 21, 35, 0.98)
        );
    border: 1px solid #26334a;
    border-radius: 17px;
    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.channel-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 17px;
}

.channel-panel-heading h2 {
    margin: 0;
    color: #f1f5f9;
    font-size: 19px;
    letter-spacing: -0.015em;
}

.channel-panel-heading p {
    margin: 6px 0 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 7px 10px;
    color: #86efac;
    background: rgba(21, 128, 61, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.live-indicator > span {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(
            circle at center,
            #172033,
            #020617 70%
        );
    border: 1px solid #1e293b;
    border-radius: 13px;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: contain;
}

.player-url {
    margin-top: 14px;
}

.player-url > span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.player-url code {
    display: block;
    overflow: hidden;
    padding: 11px 12px;
    color: #bfdbfe;
    background: #080f1c;
    border: 1px solid #1e293b;
    border-radius: 9px;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-empty {
    display: grid;
    min-height: 340px;
    place-items: center;
    padding: 35px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(30, 41, 59, 0.55),
            rgba(2, 6, 23, 0.82)
        );
    border: 1px dashed #334155;
    border-radius: 13px;
}

.player-empty strong {
    color: #e2e8f0;
    font-size: 16px;
}

.player-empty p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
}

/* Información del canal */

.service-info-list {
    margin: 0;
}

.service-info-list > div {
    display: grid;
    grid-template-columns:
        minmax(105px, 0.75fr)
        minmax(0, 1.25fr);
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.62);
}

.service-info-list > div:first-child {
    padding-top: 2px;
}

.service-info-list > div:last-child {
    padding-bottom: 2px;
    border-bottom: 0;
}

.service-info-list dt {
    color: #718096;
    font-size: 12px;
    font-weight: 650;
}

.service-info-list dd {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 650;
    text-align: right;
    text-overflow: ellipsis;
}

.service-info-list code {
    color: #93c5fd;
    background: transparent;
}

/* Métricas inferiores */

.channel-overview-summary {
    grid-template-columns:
        repeat(5, minmax(150px, 1fr));
    margin-top: 20px;
}

.channel-overview-summary .summary-card {
    min-height: 112px;
    padding: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 39, 0.98),
            rgba(13, 21, 35, 0.98)
        );
    border-color: #26334a;
}

.channel-overview-summary .summary-card span {
    margin-bottom: 12px;
    font-size: 12px;
}

.channel-overview-summary .summary-card strong {
    font-size: 25px;
}

/* Adaptación */

@media (max-width: 1080px) {
    .channel-overview-grid {
        grid-template-columns: 1fr;
    }

    .channel-overview-summary {
        grid-template-columns:
            repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 720px) {
    .channel-admin-container {
        width: min(100% - 24px, 1480px);
        padding-top: 18px;
    }

    .channel-tabs {
        margin-inline: -2px;
        border-radius: 12px;
    }

    .channel-tab {
        min-height: 40px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .channel-panel {
        padding: 17px;
        border-radius: 14px;
    }

    .channel-overview-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .service-info-list > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .service-info-list dd {
        text-align: left;
    }

    .player-empty {
        min-height: 240px;
    }
}

@media (max-width: 450px) {
    .channel-overview-summary {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PESTAÑA DE ESTADÍSTICAS
   ========================================================= */

.statistics-toolbar-card {
    padding: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 39, 0.98),
            rgba(13, 21, 35, 0.98)
        );
    border: 1px solid #26334a;
    border-radius: 17px;
    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.15);
}

.statistics-toolbar-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.statistics-toolbar-heading h2 {
    margin: 0;
    font-size: 20px;
}

.statistics-toolbar-heading p {
    margin: 6px 0 0;
    color: #718096;
    font-size: 13px;
}

.statistics-quick-ranges {
    display: flex;
    align-items: center;
    gap: 7px;
}

.statistics-quick-ranges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 12px;
    color: #bfdbfe;
    background: #172033;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.statistics-quick-ranges a:hover {
    color: #ffffff;
    background: #1e293b;
    border-color: #60a5fa;
}

.statistics-date-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.statistics-date-form label {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.statistics-date-form input {
    display: block;
    min-width: 170px;
    margin-top: 7px;
}

.statistics-date-form button {
    width: auto;
    margin: 0;
    white-space: nowrap;
}

.statistics-summary-grid {
    grid-template-columns:
        repeat(5, minmax(150px, 1fr));
    margin-top: 20px;
}

.statistics-summary-grid .summary-card {
    min-height: 126px;
}

.statistics-summary-grid .summary-card small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 11px;
}

.statistics-chart-panel,
.statistics-table-panel {
    margin-top: 20px;
}

.statistics-chart-wrapper {
    position: relative;
    height: 390px;
}

.statistics-table th,
.statistics-table td {
    vertical-align: middle;
}

.statistics-empty-state {
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .statistics-summary-grid {
        grid-template-columns:
            repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 800px) {
    .statistics-toolbar-heading,
    .statistics-date-form {
        align-items: stretch;
        flex-direction: column;
    }

    .statistics-quick-ranges {
        flex-wrap: wrap;
    }

    .statistics-date-form input {
        width: 100%;
        min-width: 0;
    }

    .statistics-date-form button {
        width: 100%;
    }

    .statistics-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .statistics-chart-wrapper {
        height: 330px;
    }
}

@media (max-width: 480px) {
    .statistics-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PESTAÑA TRANSFERENCIA
   ========================================================= */

.transfer-header-card {
    padding: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 39, 0.98),
            rgba(13, 21, 35, 0.98)
        );
    border: 1px solid #26334a;
    border-radius: 17px;
    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.15);
}

.transfer-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
}

.transfer-heading h2 {
    margin: 0;
    color: #f1f5f9;
    font-size: 20px;
}

.transfer-heading p {
    margin: 6px 0 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}

.transfer-year-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.transfer-year-form label {
    min-width: 130px;
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.transfer-year-form select {
    display: block;
    margin-top: 7px;
}

.transfer-year-form button {
    width: auto;
    margin: 0;
    white-space: nowrap;
}

.transfer-summary-grid {
    grid-template-columns:
        repeat(5, minmax(150px, 1fr));
    margin-top: 20px;
}

.transfer-summary-grid .summary-card {
    min-height: 128px;
}

.transfer-summary-grid .summary-card small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
}

.transfer-change-up {
    color: #86efac;
}

.transfer-change-down {
    color: #fca5a5;
}

.transfer-chart-panel,
.transfer-table-panel {
    margin-top: 20px;
}

.transfer-chart-wrapper {
    position: relative;
    height: 370px;
}

.transfer-table th,
.transfer-table td {
    vertical-align: middle;
}

.transfer-current-month {
    background: rgba(37, 99, 235, 0.06);
}

.current-month-badge {
    display: inline-flex;
    margin-left: 9px;
    padding: 4px 7px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    vertical-align: middle;
}

.transfer-percentage-cell {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) 48px;
    align-items: center;
    gap: 11px;
    min-width: 180px;
}

.transfer-progress {
    overflow: hidden;
    height: 7px;
    background: #0b1220;
    border-radius: 999px;
}

.transfer-progress span {
    display: block;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa
        );
    border-radius: inherit;
}

.transfer-percentage-cell small {
    color: #94a3b8;
    text-align: right;
}

@media (max-width: 1100px) {
    .transfer-summary-grid {
        grid-template-columns:
            repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 760px) {
    .transfer-heading,
    .transfer-year-form {
        align-items: stretch;
        flex-direction: column;
    }

    .transfer-year-form label {
        width: 100%;
        min-width: 0;
    }

    .transfer-year-form button {
        width: 100%;
    }

    .transfer-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .transfer-chart-wrapper {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .transfer-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PESTAÑA CONFIGURACIÓN
   ========================================================= */

.configuration-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(300px, 0.7fr);
    align-items: start;
    gap: 20px;
}

.configuration-main-column,
.configuration-side-column {
    min-width: 0;
}

.configuration-side-column {
    display: grid;
    gap: 20px;
}

.configuration-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 19px;
}

.configuration-form-grid label {
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.configuration-form-grid input,
.configuration-form-grid select {
    display: block;
    width: 100%;
    margin-top: 8px;
}

.configuration-form-grid label > small {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}

.configuration-full-field {
    grid-column: 1 / -1;
}

.configuration-status-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 18px;
    background: #0b1220;
    border: 1px solid #253047;
    border-radius: 13px;
}

.configuration-status-section strong {
    color: #e2e8f0;
    font-size: 14px;
}

.configuration-status-section p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.configuration-switch {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.configuration-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.configuration-switch-control {
    position: relative;
    width: 44px;
    height: 24px;
    background: #334155;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.configuration-switch-control::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    content: "";
    background: #f8fafc;
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
}

.configuration-switch input:checked
+ .configuration-switch-control {
    background: #16a34a;
}

.configuration-switch input:checked
+ .configuration-switch-control::after {
    transform: translateX(20px);
}

.configuration-switch-label {
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.configuration-form-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
}

.configuration-form-actions button {
    width: auto;
    margin: 0;
}

.configuration-summary-list {
    margin: 0;
}

.configuration-summary-list > div {
    display: grid;
    grid-template-columns:
        minmax(100px, 0.8fr)
        minmax(0, 1.2fr);
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid #253047;
}

.configuration-summary-list > div:last-child {
    border-bottom: 0;
}

.configuration-summary-list dt {
    color: #64748b;
    font-size: 12px;
}

.configuration-summary-list dd {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 650;
    text-align: right;
    text-overflow: ellipsis;
}

.configuration-summary-list code {
    color: #93c5fd;
}

.danger-zone-panel {
    border-color: rgba(220, 38, 38, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(69, 10, 10, 0.19),
            rgba(17, 24, 39, 0.98)
        );
}

.danger-zone-heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.danger-zone-heading h2 {
    margin: 0;
    color: #fecaca;
    font-size: 17px;
}

.danger-zone-heading p {
    margin: 5px 0 0;
    color: #9f6b6b;
    font-size: 12px;
}

.danger-zone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #fecaca;
    background: rgba(185, 28, 28, 0.28);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 50%;
    font-weight: 900;
}

.danger-zone-description {
    margin: 18px 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
}

.configuration-delete-button {
    width: 100%;
}

@media (max-width: 980px) {
    .configuration-layout {
        grid-template-columns: 1fr;
    }

    .configuration-side-column {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .configuration-form-grid,
    .configuration-side-column {
        grid-template-columns: 1fr;
    }

    .configuration-status-section,
    .configuration-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .configuration-switch {
        align-self: flex-start;
    }

    .configuration-form-actions button,
    .configuration-form-actions a {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .configuration-summary-list > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .configuration-summary-list dd {
        text-align: left;
    }
}

/* =========================================================
   PESTAÑA GEOIP
   ========================================================= */

.geoip-toolbar-card {
    padding: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 24, 39, 0.98),
            rgba(13, 21, 35, 0.98)
        );
    border: 1px solid #26334a;
    border-radius: 17px;
    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.15);
}

.geoip-toolbar-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.geoip-toolbar-heading h2 {
    margin: 0;
    color: #f1f5f9;
    font-size: 20px;
}

.geoip-toolbar-heading p {
    margin: 6px 0 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}

.geoip-quick-ranges {
    display: flex;
    align-items: center;
    gap: 7px;
}

.geoip-quick-ranges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 12px;
    color: #bfdbfe;
    background: #172033;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.geoip-quick-ranges a:hover {
    color: #ffffff;
    background: #1e293b;
    border-color: #60a5fa;
}

.geoip-date-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.geoip-date-form label {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.geoip-date-form input {
    display: block;
    min-width: 170px;
    margin-top: 7px;
}

.geoip-date-form button {
    width: auto;
    margin: 0;
    white-space: nowrap;
}

.geoip-summary-grid {
    grid-template-columns:
        repeat(5, minmax(150px, 1fr));
    margin-top: 20px;
}

.geoip-summary-grid .summary-card {
    min-height: 128px;
}

.geoip-summary-grid .summary-card small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
}

.geoip-main-country-card strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

.geoip-main-flag,
.geoip-country-flag {
    font-size: 22px;
    line-height: 1;
}

.geoip-live-panel,
.geoip-ranking-panel,
.geoip-connections-panel {
    margin-top: 20px;
}

.geoip-live-countries {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.geoip-live-country {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px;
    background: #0b1220;
    border: 1px solid #253047;
    border-radius: 12px;
}

.geoip-live-country-name {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.geoip-live-country-name strong {
    display: block;
    overflow: hidden;
    color: #e2e8f0;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geoip-live-country-name small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
}

.geoip-live-country-value {
    text-align: right;
}

.geoip-live-country-value strong {
    display: block;
    color: #86efac;
    font-size: 21px;
}

.geoip-live-country-value span {
    color: #64748b;
    font-size: 10px;
}

.geoip-chart-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.geoip-chart-wrapper {
    position: relative;
    height: 370px;
}

.geoip-country-cell {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 170px;
}

.geoip-country-cell strong {
    display: block;
    color: #e2e8f0;
}

.geoip-country-cell small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
}

.geoip-percentage-cell {
    display: grid;
    grid-template-columns:
        minmax(110px, 1fr)
        48px;
    align-items: center;
    gap: 11px;
    min-width: 185px;
}

.geoip-progress {
    overflow: hidden;
    height: 7px;
    background: #0b1220;
    border-radius: 999px;
}

.geoip-progress span {
    display: block;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa
        );
    border-radius: inherit;
}

.geoip-percentage-cell small {
    color: #94a3b8;
    text-align: right;
}

.geoip-record-count {
    display: inline-flex;
    padding: 6px 9px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.geoip-connections-table code {
    color: #93c5fd;
    white-space: nowrap;
}

.geoip-user-agent {
    display: block;
    overflow: hidden;
    max-width: 290px;
    color: #cbd5e1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geoip-empty-state {
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .geoip-summary-grid {
        grid-template-columns:
            repeat(3, minmax(150px, 1fr));
    }

    .geoip-chart-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .geoip-toolbar-heading,
    .geoip-date-form {
        align-items: stretch;
        flex-direction: column;
    }

    .geoip-quick-ranges {
        flex-wrap: wrap;
    }

    .geoip-date-form input {
        width: 100%;
        min-width: 0;
    }

    .geoip-date-form button {
        width: 100%;
    }

    .geoip-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .geoip-chart-wrapper {
        height: 330px;
    }
}

@media (max-width: 480px) {
    .geoip-summary-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PAGINACIÓN
   ========================================================= */

.portal-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 18px;
    border-top: 1px solid #26334a;
}

.pagination-summary {
    color: #64748b;
    font-size: 12px;
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-links a,
.pagination-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pagination-links a {
    color: #bfdbfe;
    background: #172033;
    border: 1px solid #334155;
    text-decoration: none;
}

.pagination-links a:hover {
    color: #ffffff;
    background: #1e293b;
    border-color: #60a5fa;
}

.pagination-links span {
    color: #94a3b8;
    background: #0b1220;
    border: 1px solid #253047;
}

@media (max-width: 650px) {
    .portal-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination-links {
        justify-content: space-between;
    }
}

.security-tabs {
    margin-bottom: 24px;
}
