/**
 * Estilos Frontend - Domino Torneos
 */

.domino-torneo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.domino-torneo-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.domino-torneo-header {
    border-bottom: 2px solid #0073aa;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.domino-torneo-title {
    font-size: 24px;
    font-weight: bold;
    color: #23282d;
    margin: 0 0 10px 0;
}

.domino-torneo-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.domino-torneo-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.domino-torneo-content {
    line-height: 1.6;
}

.domino-torneo-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.domino-torneo-status.pendiente {
    background: #f0f0f1;
    color: #646970;
}

.domino-torneo-status.en-curso {
    background: #d63638;
    color: #fff;
}

.domino-torneo-status.finalizado {
    background: #00a32a;
    color: #fff;
}

.domino-participantes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domino-participante-item {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domino-participante-item:last-child {
    border-bottom: none;
}

.domino-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.domino-btn:hover {
    background: #005a87;
    color: #fff;
}

.domino-btn-secondary {
    background: #646970;
}

.domino-btn-secondary:hover {
    background: #4f5258;
}

.domino-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.domino-table th,
.domino-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.domino-table th {
    background: #f0f0f1;
    font-weight: bold;
    color: #23282d;
}

.domino-table tr:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .domino-torneo-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .domino-table {
        font-size: 14px;
    }
    
    .domino-table th,
    .domino-table td {
        padding: 8px;
    }
}
