html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* ===============================
   FOCUS BOOTSTRAP
================================ */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ===============================
   BODY
================================ */

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* ===============================
   CARDS DARK MODE
================================ */

.card {
    background: rgba(17,24,45,0.85) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #eaf2ff !important;
}

/* ===============================
   TABLAS DARK MODE BAGTECH
================================ */

.table {
    background: transparent !important;
    color: #eaf2ff !important;
}

    .table thead th {
        background: rgba(255,255,255,0.05) !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .table tbody tr {
        background: transparent !important;
    }

    .table td {
        color: #eaf2ff !important;
    }

/* ===============================
   HOVER TABLAS
================================ */

.table-hover tbody tr {
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

    .table-hover tbody tr:hover {
        background: rgba(59,130,246,0.12) !important;
        transform: scale(1.01);
        box-shadow: inset 0 0 0 1px rgba(59,130,246,0.35);
    }

        .table-hover tbody tr:hover td {
            color: #ffffff !important;
        }

/* evitar que bootstrap cambie fondo */

.table-hover > tbody > tr:hover > * {
    background-color: transparent !important;
}

/* ===============================
   BADGES
================================ */

.badge {
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 20px;
}

/* ===============================
   BOTONES TABLA
================================ */

.table .btn {
    transition: all 0.15s ease;
}

    .table .btn:hover {
        transform: scale(1.05);
    }

/* ===============================
   FILA ACTIVA
================================ */

.table tbody tr:active {
    transform: scale(0.99);
}
