/* football/static/css/footer.css */

/* 解决footer链接对齐问题 */
.footer-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f8f9fa !important;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.footer-links li a:hover {
    color: #0d6efd !important;
    transform: translateX(3px);
}

/* 统一图标样式 */
.footer-icon {
    display: inline-block;
    width: 1.2em !important;  /* 固定宽度，确保对齐 */
    text-align: center;
    margin-right: 0.5rem;
    flex-shrink: 0;  /* 防止图标被压缩 */
}

/* 移除列表默认样式 */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/* 免责声明样式 */
.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #ffc107;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* 联赛标签统一 */
.league-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
}