.knockout-widget{
    width:300px;
    background:#fff;
    border:1px solid #ddd;
    margin: 0 auto;
}

.ko-tabs{
    display:flex;
}

.ko-tab{
    flex:1;
    border:none;
    background:#eee;
    padding:5px 10px;
    cursor:pointer;
    font-weight:700;
    font-size:13px;
}

.ko-tab.active{
    background:#b30000;
    color:#fff;
}

.ko-content{
    display:none;
    padding:10px;
}

.ko-content.active{
    display:block;
}

.ko-match{
    background:#fafafa;
    border:1px solid #ddd;
    border-radius:8px;
    padding:5px 10px;
    margin-bottom:2px;
}

.team{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
}

.team img{
    width:14px;
    height:14px;
    object-fit:contain;
    flex-shrink:0;
}

.team span{
    flex:1;
    font-size:13px;
    font-weight:600;
}

.team strong{
    width:25px;
    text-align:right;
}

.penalties{
    text-align:right;
    font-size:11px;
    color:#777;
    margin-top:4px;
}

/* ==========================================================================
   NUEVOS AJUSTES PARA COMPACTAR LOS PLACEHOLDERS CON BANDERAS
   ========================================================================== */

.placeholder-match{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alineado a la izquierda como los nombres de equipos */
    padding: 6px 0;
}

.placeholder-win{
    font-size:10px;
    color:#888;
    text-transform: uppercase;
    font-weight:700;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.placeholder-team{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:600;
    color: #333;
}

.placeholder-team img{
    width:18px;
    height:13px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.placeholder-vs{
    font-size:11px;
    color:#aaa;
    font-weight: 400;
    text-transform: lowercase;
}

.placeholder-code {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}