/* Contenedor principal */
.msgw_container {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 10px;
}



/* Titulo del widget */
.msgw_title {
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d52b1e;
    color: #1a3e6f;
}

/* Contenido principal */
.msgw_main {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
}

/* Contenedor por deporte */
.msgw_sport {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Cabecera del deporte */
.msgw_sport_header {
    background: linear-gradient(135deg, #1a3e6f 0%, #d52b1e 100%);
    color: white;
    padding: 8px 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

/* Estilos específicos por deporte */
.msgw_nba .msgw_sport_header {
    background: linear-gradient(135deg, #1a3e6f 0%, #17408B 100%);
}

.msgw_mlb .msgw_sport_header {
    background: linear-gradient(135deg, #d52b1e 0%, #002D72 100%);
}

/* Tarjeta de partido */
.msgw_game_card {
    background: white;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.msgw_game_card:last-child {
    border-bottom: none;
}

/* Hora del partido */
.msgw_game_time {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Contenedor de equipos */
.msgw_teams_container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Estilos de equipo */
.msgw_team {
    display: flex;
    align-items: center;
    flex: 1;
}

.msgw_team_logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.msgw_team_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Equipo visitante */
.msgw_away_team {
    justify-content: flex-end;
    text-align: right;
}

.msgw_away_team .msgw_team_logo {
    order: 1;
    margin-right: 0;
    margin-left: 8px;
}

/* Separador VS */
.msgw_vs_separator {
    margin: 0 8px;
    color: #999;
    font-size: 11px;
}

/* Botón de predicción */
.msgw_prediction_button {
    display: block;
    background: #1a3e6f;
    color: white !important;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.msgw_prediction_button:hover {
    background: #d52b1e;
}

/* Sin predicción disponible */
.msgw_no_prediction {
    color: #999;
    font-size: 11px;
    text-align: center;
    padding: 6px;
    font-style: italic;
}

/* Mensaje sin partidos */
.msgw_no_games {
    background: #f8f8f8;
    padding: 12px;
    text-align: center;
    color: #666;
    font-size: 13px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .msgw_team_name {
        font-size: 12px;
    }
    
    .msgw_game_card {
        padding: 10px;
    }
    
    .msgw_prediction_button {
        padding: 5px;
        font-size: 11px;
    }

    
}