body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding-top: 75px;
}
.odds-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s;
    box-sizing: border-box;
}
.odds-input:focus {
    border-color: #002D72;
    box-shadow: 0 0 0 2px rgba(0, 45, 114, 0.2);
    outline: none;
}

/* Placeholder menos visible */
.odds-input::placeholder {
    color: #9ca3af; 
    opacity: 1;
}
.odds-input::-webkit-input-placeholder {
    color: #9ca3af;
}

/* TOOLTIP INTERACTIVO */
.tooltip-container {
    position: relative;
    display: inline-block;
}
.tooltip-content {
    position: absolute;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    width: 250px;
    background-color: #1f2937;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s, visibility 0.3s;
    text-align: left;
    font-weight: normal;
}
.tooltip-content.active {
    opacity: 1;
    visibility: visible;
}
.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

/* Mobile First: Ocultar encabezado de tabla y reestructurar filas */
@media (max-width: 639px) {
    .table-container table thead {
        display: none;
    }
    .table-container table td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding-left: 0;
        padding-right: 0;
    }
    .table-container table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
    }
    
    /* Etiqueta para el número de CUOTA */
    .table-container table td[data-label="CUOTA"]:before {
        content: "CUOTA";
        font-weight: bold;
        margin-right: 8px;
        color: #002D72;
    }
    
    /* Elimina la etiqueta móvil del campo de CUOTAS */
    .table-container table td[data-label="CUOTAS"]:before { 
        content: ""; 
        font-weight: bold;
        margin-right: 0;
        color: #002D72;
     }
     .table-container table td[data-label="CUOTAS"] {
         padding-left: 1rem;
         padding-right: 1rem;
     }

    .table-container table td[data-label="Apuesta"]:before { 
        content: "$"; 
        font-weight: bold;
        margin-right: 8px;
        color: #C8102E;
    }
    .table-container table td[data-label="Ganancia"]:before { 
        content: "$"; 
        font-weight: bold;
        margin-right: 8px;
        color: #10B981;
    } 
    .table-container table td[data-label="CUOTA"] { 
        padding-left: 1rem;
        font-size: 0.9rem;
        background-color: #f3f4f6; 
        border-radius: 0.5rem 0.5rem 0 0;
    }
}