:root {
--primary-color: #0078d4; /* Azul similar a Microsoft */
--secondary-color: #ffb900; /* Amarillo destacado */
}
body {
font-family: 'Segoe UI', Arial, sans-serif;
color: #333;
background-color: #f9f9f9;
}
.navbar {
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card {
border: none;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-3px);
}
.match-widget {
background: white;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.team-logo {
height: 40px;
width: auto;
margin: 0 auto;
}
.news-card {
border-left: 3px solid var(--primary-color);
transition: all 0.3s;
}
.news-card:hover {
background-color: #f5f5f5;
border-left-width: 6px;
}
/* Estilos para la tabla de posiciones */
#standings-table tr:first-child {
background-color: var(--secondary-color);
color: white;
font-weight: bold;
}
/* Responsividad */
@media (max-width: 768px) {
.sticky-top {
position: static !important;
}
}