/* Mis Ligas */
.misligas-section {
    margin: 20px 0;
  }
  .misligas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .misligas-header h2 {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    margin: 0;
  }
  .crear-liga {
    background-color: #ff4d4d;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
  }
  .liga-card {
    display: flex;
    background: #1e1e1e;
    padding: 12px;
    border-radius: 8px;
    align-items: center;
    gap: 10px;
  }
  .liga-card__icon img {
    width: 40px;
    height: 40px;
  }
  .liga-card__info .name {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }
  .liga-card__info .type {
    font-size: 12px;
    color: #cccccc;
  }
  .liga-card__details {
    margin-left: auto;
    display: flex;
    gap: 15px;
    color: #cccccc;
    font-size: 14px;
  }
  
  /* Partidos */
  .partidos-section {
    margin: 30px 0;
  }
  .partidos-section h2 {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .partidos-section h2 span {
    color: #cccccc;
  }
  .partidos-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .partidos-list .partido {
    display: flex;
    background: #1e1e1e;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    align-items: center;
  }
  .partido .team-local,
  .partido .team-visitor {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
  }
  .partido .team-local img,
  .partido .team-visitor img {
    width: 24px;
    height: 24px;
  }
  .partido .team-local span,
  .partido .team-visitor span {
    color: #ffffff;
    font-size: 14px;
  }
  .partido .match-info {
    flex: 0.5;
    text-align: center;
    color: #cccccc;
    font-size: 13px;
  }
  .ver-todos-container {
    text-align: center;
    margin-top: 10px;
  }
  .ver-todos-btn {
    background-color: #ff4d4d;
    color: #ffffff;
    padding: 8px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
  }
  
  /* Noticias */
  .noticias-section {
    margin: 30px 0 50px;
  }
  .noticias-section h2 {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .noticias-section h2 span {
    color: #cccccc;
  }
  .noticias-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .noticias-list .noticia {
    display: flex;
    background: #1e1e1e;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
  }
  .noticia-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
  .noticia-info {
    padding: 10px;
    flex: 1;
  }
  .noticia-info .meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 5px;
  }
  .noticia-title {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
  }
  