@charset "utf-8";
/* CSS Document */
/*
.pasto-fondo {
    background-color: #4CAF50;
    background-image: radial-gradient(circle, rgba(0, 100, 0, 0.2) 1px, transparent 1px),
                      radial-gradient(circle, rgba(0, 100, 0, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}
*/
.table-custom td,
.table-custom th {
  padding: 0.20rem;
  vertical-align: middle;
}
.nombre-equipo {
  font-size: 0.9em;
  line-height: 1;
}
.btn-circle-xl {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}
/* Fondo principal estilo oscuro con textura */
body.pasto-fondo {
    background: #0f1a20 url('../img/textura_fondo.png') repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

/* Tarjetas estilo cyber/neón */
.card {
    background: rgba(20, 25, 32, 0.95);
    border: 2px solid #ff003c;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4), inset 0 0 10px rgba(255, 0, 60, 0.2);
    overflow: hidden;
}

/* Encabezado de tarjetas */
.card .card-header {
    background: linear-gradient(90deg, #1a1f27, #14181f);
    border-bottom: 1px solid #ff003c;
    color: #ff003c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Botones estilo neón */
/* Estilo base para todas las cards futuristas */
/*
.card {
    border: none;
    border-radius: 12px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
body .card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
} */

/* Desactiva hover dentro de modales */
.modal-dialog {
    transform: none !important;
    box-shadow: none !important;
}
.modal.fade.show {
    opacity: 1 !important;
    transition: none !important;
}
.modal.fade {
    transform: none !important;
    box-shadow: none !important;
}

.modal .card:hover,
.modal-content:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Mientras haya un backdrop activo, desactiva hover en las cards */
.modal-backdrop.show ~ .card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Reemplazo de los bg clásicos de Bootstrap con colores futuristas */
.card.bg-primary {
    background: linear-gradient(135deg, #0a1a3b, #123c7c);
    border: 1px solid #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.card.bg-success {
    background: linear-gradient(135deg, #0b2f24, #146b49);
    border: 1px solid #00ff99;
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
}

.card.bg-info {
    background: linear-gradient(135deg, #092d40, #137caa);
    border: 1px solid #00cfff;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.4);
}

.card.bg-warning {
    background: linear-gradient(135deg, #3a2a00, #d48c00);
    border: 1px solid #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.card.bg-danger {
    background: linear-gradient(135deg, #3b0a0a, #7c1212);
    border: 1px solid #ff003c;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.card.bg-secondary {
    background: linear-gradient(135deg, #1c1c1c, #3a3a3a);
    border: 1px solid #aaa;
    box-shadow: 0 0 15px rgba(170, 170, 170, 0.4);
}

/* Input fields estilo futurista */
.form-control-user {
    background: #141a21;
    border: 1px solid #ff003c;
    color: #fff;
    border-radius: 8px;
    box-shadow: inset 0 0 8px rgba(255, 0, 60, 0.2);
    transition: border 0.3s, box-shadow 0.3s;
}

.form-control-user:focus {
    background: #1a2028;
    border-color: #ff003c;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.6);
    color: #fff;
}

/* Textos secundarios */
.text-gray-900 {
    color: #ff003c !important;
}

/* Links */
a.small {
    color: #ff003c !important;
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.6);
}

a.small:hover {
    color: #ff1f5a !important;
    text-decoration: underline;
}
.btn.btn-user {
    font-size: 1.2rem;!important;
    font-weight: bold;
}
