html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Animación fade + zoom-in */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.login-logo-animado {
    animation: fadeZoomIn 1.2s ease-out;
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.bg-gradient-futbolero {
    background: linear-gradient(180deg, #09062b 0%, #0e0b3d 100%);
}

.btn-futbolero {
    background-color: #d6140d;
    color: #ffffff;
    font-weight: bold;
    border: none;
}

.btn-futbolero:hover {
    background-color: #b5120c;
    color: #ffffff;
}

.btn-futbolero-secondary {
    background-color: #09062b;
    color: #ffffff;
}

    .btn-futbolero-secondary:hover {
        background-color: #0e0b3d;
    }

.btn-futbolero-outline {
    border: 1px solid #c3c3c7;
    color: #747c84;
    background-color: transparent;
}

.card-login {
    border-top: 4px solid #d6140d;
}

.card-futbolero {
    border-top: 4px solid #d6140d;
}

.thead-futbolero {
    background-color: #09062b;
    color: white;
}

.btn-futbolero {
    background-color: #d6140d;
    color: white;
    border: none;
}

    .btn-futbolero:hover {
        background-color: #b5120c;
        color: white;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #09062b !important;
    color: white !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #d6140d !important;
    color: white !important;
}




