/**
 * admin.css - Estilos del panel de administracion
 * Sistema de Torneo de Futbol - Apoderados SFD
 * 
 * Usa public.css como base + fontawesome-all.min.css para iconos
 * No depende de main.css (Template Forty eliminado)
 */

/* === HTML Reset (reemplaza lo que main.css aportaba) === */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.3; color: #fff; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* === Admin Nav (barra blanca superior) === */
.admin-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 64px;
}
.admin-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.admin-nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.admin-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.admin-nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2e8c2d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.admin-nav-logo-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.admin-nav-logo-icon span { display: none; }
.admin-nav-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45em 1em 0.45em 0.7em;
    border-radius: 8px;
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.admin-nav-back-btn:hover {
    background: linear-gradient(135deg, #27743f 0%, #1a5c2a 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}
.admin-nav-back-icon {
    width: 18px;
    height: 18px;
}
.admin-nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.admin-nav-user {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.85rem;
    white-space: nowrap;
}
.admin-nav-user-icon {
    width: 1em;
    height: 1em;
    color: #888;
}
.admin-nav-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.35em 0.8em;
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.admin-nav-logout:hover {
    background: #fff0f0;
    border-color: #e53935;
    color: #c62828;
}

/* === Admin Hero Center -- Wide variant for CRUD modules === */
.admin-hero-center--wide {
    max-width: 1100px;
}

/* === Admin Page Title === */
.admin-page-title {
    text-align: center;
    font-family: 'Titan One', cursive;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* === Admin Footer === */
.admin-footer {
    background: #1a1a2e;
    text-align: center;
    padding: 1.5em;
}
.admin-footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* === Hero Background (Login + Menu principal) === */
.admin-hero-bg {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.admin-hero-texture {
    position: absolute;
    inset: 0;
    background: #1a6b2a url('../../images/hero_bg_texture.jpg') center/cover no-repeat;
    z-index: 0;
}
.admin-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
}
.admin-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.admin-hero-center {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    padding: 3rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === Login Card (glassmorphism) === */
.login-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 2.5em;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.login-card-icon {
    font-size: 3em;
    color: #2e8c2d;
    margin-bottom: 0.3em;
}
.login-card-title {
    color: #333;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 1.5em;
}
.login-label {
    display: block;
    text-align: left;
    color: #555;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 0.4em;
    margin-top: 1em;
}
.login-label:first-of-type { margin-top: 0; }
.login-input {
    width: 100%;
    padding: 0.8em 1em;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    color: #333;
    transition: border-color 0.3s;
}
.login-input:focus {
    border-color: #2e8c2d;
    outline: none;
}

/* === Admin Menu Cards (glassmorphism) === */
.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.admin-menu-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    padding: 1.8em 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
}
.admin-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.9);
}
.admin-menu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(46,140,45,0.3);
}
.admin-menu-card-label {
    color: #333;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.35;
}

/* === Messages === */
.mensaje {
    padding: 1em 1.5em;
    border-radius: 8px;
    margin-bottom: 1.5em;
    text-align: center;
}
.mensaje-exito {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.mensaje-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* === Grid Container (List Pages) === */
.grid-container {
    max-width: 800px;
    margin: 0 auto;
}
.grid-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* === Grid Table === */
.grid-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}
.grid-table thead th {
    background: #2e8c2d;
    color: #fff;
    padding: 0.8em 0.8em;
    text-align: center;
    vertical-align: middle;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #1a6b1a;
}
.grid-table thead th:first-child {
    border-radius: 8px 0 0 0;
}
.grid-table thead th:last-child {
    border-radius: 0 8px 0 0;
}
.grid-table tbody td {
    padding: 0.7em 0.8em;
    border-bottom: 2px solid #ccc;
    font-size: 1.05em;
    color: #333;
    text-align: center;
    vertical-align: middle;
}
.grid-table tbody tr {
    cursor: pointer;
}
.grid-table tbody tr:hover {
    background: #f0f8f0;
}
.grid-table tbody tr.selected {
    background: #d4edda;
}

/* === Action Buttons === */
.btn-actions {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.btn-action:hover {
    transform: translateY(-2px);
    color: #fff;
}
.btn-nuevo {
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
}
.btn-nuevo:hover {
    box-shadow: 0 4px 12px rgba(46, 140, 45, 0.4);
}
.btn-editar {
    background: linear-gradient(135deg, #f9a825 0%, #f57f17 100%);
}
.btn-editar:hover {
    box-shadow: 0 4px 12px rgba(249, 168, 37, 0.4);
}
.btn-eliminar {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
}
.btn-eliminar:hover {
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}
.btn-action:disabled, .btn-action.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* === Form Container (Create/Edit Pages) === */
.form-container {
    max-width: 500px;
    margin: 0 auto;
}
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #333;
}
.form-card label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 1.2em;
    font-size: 0.95em;
}
.form-card label:first-child {
    margin-top: 0;
}
/* Checkbox styles */
.form-card input[type="checkbox"] {
    margin-right: 0.5em;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.form-card input[type="checkbox"] + label {
    color: #333;
    display: inline;
    font-size: 1em;
    font-weight: 600;
}
.form-card p,
.form-card div,
.form-card span,
.form-card td,
.form-card th {
    color: #333;
}
.form-card input[type="text"],
.form-card input[type="password"],
.form-card input[type="number"],
.form-card input[type="date"],
.form-card input[type="time"],
.form-card select {
    width: 100%;
    padding: 0.8em 1em;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
    background: #fff;
    color: #333;
}
.form-card input[type="date"],
.form-card input[type="time"] {
    min-height: 2.8em;
}
.form-card input:focus,
.form-card select:focus {
    border-color: #2e8c2d;
    outline: none;
}

/* === Submit Button === */
.btn-submit {
    display: block;
    width: 100%;
    padding: 1em;
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5em;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 140, 45, 0.4);
}

/* === Button Row (Edit pages) === */
.btn-row {
    display: flex;
    gap: 1em;
    margin-top: 1.5em;
}
.btn-row .btn-submit {
    flex: 1;
    margin-top: 0;
    text-align: center;
}
.btn-volver {
    flex: 1;
    padding: 1em;
    background: linear-gradient(135deg, #757575 0%, #616161 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-volver:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(117, 117, 117, 0.4);
    color: #fff;
}

/* === Sin Registros === */
.sin-registros {
    text-align: center;
    padding: 2em;
    color: #666;
}

/* === Total Counter === */
.total-counter {
    text-align: center;
    font-size: 0.85em;
    font-weight: 700;
    color: #555;
    margin-bottom: 1.5em;
    padding-top: 0.3em;
}

/* === Loading Overlay === */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loading-overlay.active {
    display: flex;
}
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2e8c2d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1em;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading-text {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}

/* === Menu (Admin Panel) === */
.menu-container {
    max-width: 600px;
    margin: 0 auto;
}
.menu-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.menu-card h2 {
    color: #2e8c2d;
    margin-bottom: 1.5em;
    font-size: 1.5em;
}
.menu-grid {
    display: grid;
    gap: 1em;
}
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    width: 100%;
    padding: 1.2em 1.5em;
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 140, 45, 0.4);
    color: #fff;
}
.menu-btn i {
    font-size: 1.2em;
}

/* === Responsive === */
@media screen and (max-width: 736px) {
    .admin-nav-back-btn { font-size: 0.75rem; padding: 0.4em 0.8em 0.4em 0.5em; }
    .admin-nav-user { font-size: 0.72rem; }
    .admin-nav-right { gap: 1rem; }
    .admin-nav-logout { font-size: 0.72rem; padding: 0.3em 0.6em; }
    .admin-page-title { font-size: 1.3rem; }
    .admin-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .admin-menu-card { padding: 1.2em 0.8em; }
    .admin-menu-card-icon { width: 42px; height: 42px; font-size: 1.15em; }
    .admin-menu-card-label { font-size: 0.9em; }
    .login-card { padding: 1.4em 1.2em; max-width: 320px; }
    .login-card-icon { font-size: 2.2em; margin-bottom: 0.2em; }
    .login-card-title { font-size: 1.1em; margin-bottom: 1em; }
    .login-label { font-size: 0.82em; margin-top: 0.8em; }
    .login-input { padding: 0.65em 0.8em; font-size: 0.9em; }
    .grid-card { padding: 1em; }
    .grid-table thead th,
    .grid-table tbody td {
        padding: 0.5em 0.4em;
        font-size: 0.95em;
    }
    .btn-actions { flex-direction: column; }
    .btn-action { width: 100%; }
    .form-card { padding: 1.5em; }
    .btn-row { flex-direction: column; }
    .menu-card { padding: 1.5em; }
}


/* === Usuarios Module (aliases for grid classes) === */
.usuarios-container {
    max-width: 800px;
    margin: 0 auto;
}
.usuarios-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.usuarios-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}
.usuarios-table thead th {
    background: #2e8c2d;
    color: #fff;
    padding: 0.8em 0.8em;
    text-align: center;
    vertical-align: middle;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #1a6b1a;
}
.usuarios-table thead th:first-child {
    border-radius: 8px 0 0 0;
}
.usuarios-table thead th:last-child {
    border-radius: 0 8px 0 0;
}
.usuarios-table tbody td {
    padding: 0.7em 0.8em;
    border-bottom: 2px solid #ccc;
    font-size: 1.05em;
    color: #333;
    text-align: center;
    vertical-align: middle;
}
.usuarios-table tbody tr {
    cursor: pointer;
}
.usuarios-table tbody tr:hover {
    background: #f0f8f0;
}
.usuarios-table tbody tr.selected {
    background: #d4edda;
}
.usuarios-table input[type="radio"] {
    display: none;
}
.usuarios-table .col-radio,
.col-radio {
    display: none;
}
.sin-usuarios {
    text-align: center;
    padding: 2em;
    color: #666;
}


/* === Mesa Arbitral Fields (crear/editar usuario) === */
.mesa-fields-box {
    background: #f0f4c3;
    border: 2px solid #cddc39;
    border-radius: 10px;
    padding: 1.2em 1.5em 0.5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.box-title {
    color: #827717;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 0.5em;
    display: block;
}
.hint {
    font-size: 0.85em;
    color: #888;
    margin-top: -0.3em;
    margin-bottom: 0.8em;
}


/* === Partidos por Fecha Module === */
.partidos-grid {
    display: grid;
    gap: 1.5em;
    width: 100%;
}
.partido-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.partido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}
.partido-fecha {
    color: #2e8c2d;
    font-weight: bold;
    font-size: 0.85em;
}
.partido-datetime {
    color: #666;
    font-size: 0.9em;
}
.partido-equipos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}
.partido-equipo {
    flex: 1;
    text-align: center;
}
.partido-equipo h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}
.partido-vs {
    font-size: 1.2em;
    font-weight: bold;
    color: #2e8c2d;
    padding: 0 1em;
}
.btn-ingresar {
    display: block;
    width: 100%;
    padding: 1em;
    background: linear-gradient(135deg, #2e8c2d 0%, #27743f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-ingresar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 140, 45, 0.4);
    color: #fff;
}
.partido-card-finalizado {
    background: #e0e0e0;
    border-radius: 12px;
    padding: 1.5em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.85;
}
.btn-resultado {
    display: block;
    width: 100%;
    padding: 0.45em;
    background: #9e9e9e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.6em;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.partidos-grid + .partidos-grid,
.partidos-grid + #partidos-pendientes {
    margin-top: 2.5em;
}
.mesa-sin-partidos {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5em 2em;
    text-align: center;
    color: #1a472a;
    width: 100%;
}
.mesa-sin-partidos p {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0.4em 0;
    line-height: 1.5;
}
.mesa-sin-partidos p:last-child {
    margin-top: 0.8em;
    font-size: 1.3em;
    font-weight: 700;
}
.sin-partidos {
    background: rgba(255,255,255,0.1);
    padding: 3em;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}
.sin-partidos i {
    font-size: 3em;
    margin-bottom: 0.5em;
    opacity: 0.7;
}
.mensaje {
    padding: 1em 1.5em;
    border-radius: 8px;
    margin-bottom: 1.5em;
}
.mensaje-exito {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.mensaje-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.title-centered {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
}
.title-centered h1 {
    text-align: center !important;
}

/* === Form Row/Col (crear/editar partido) === */
.form-row {
    display: flex;
    gap: 1em;
}
.form-row .form-col {
    flex: 1;
}

/* === Info RUT (editar jugador) === */
.info-rut {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
    padding: 0.8em 1em;
    border-radius: 8px;
    margin-bottom: 1em;
    text-align: center;
    font-weight: 600;
}

/* === Responsive additions === */
@media screen and (max-width: 736px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .usuarios-card {
        padding: 1em;
    }
    .usuarios-table thead th,
    .usuarios-table tbody td {
        padding: 0.5em 0.4em;
        font-size: 0.95em;
    }
    .partido-equipos {
        flex-direction: column;
    }
    .partido-vs {
        padding: 0.5em 0;
    }
}
