/* estilo.css - Estilos para el generador de eventos Acestream */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    text-align: center;
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 2px solid #000;
}

th, td {
    padding: 12px 8px;
    text-align: left;
    border: 1px solid #000;
}

th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

tr:hover {
    background-color: #f5f5f5;
}

.enlaces-acestream a {
    display: block;
    margin: 3px 0;
    padding: 5px 8px;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9em;
    border-left: 3px solid #4CAF50;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.enlaces-acestream a:hover {
    background-color: #e3f2fd;
    border-left-color: #ff6600;
}

.calidad {
    font-size: 0.75em;
    background: #2196F3;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
}

.proveedor {
    color: #888;
    font-size: 0.85em;
}

.sin-enlaces {
    color: #999;
    font-style: italic;
    font-size: 0.9em;
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    color: #666;
}

.stats {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border: 2px solid #4CAF50;
}

.stats strong {
    color: #2e7d32;
}

.hypermotion {
    background-color: #e8f5e8 !important;
    border-left-color: #2e7d32 !important;
    font-weight: bold;
}

.acb-especifico {
    background-color: #fff3e0 !important;
    border-left-color: #ff9800 !important;
    font-weight: bold;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 8px 4px;
    }
    
    .enlaces-acestream a {
        font-size: 0.8em;
        padding: 4px 6px;
    }
}