/* 
 * Networks CSS
 * Custom styles for the networks page
 */

.network-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.network-logo {
    max-height: 40px;
    max-width: 80px;
    background-color: white;
    padding: 2px;
    border-radius: 4px;
    object-fit: contain;
}

.network-table-logo {
    max-height: 30px;
    max-width: 60px;
    object-fit: contain;
}

.network-description {
    margin-bottom: 1.5rem;
    color: #495057;
}

.network-stats {
    margin-bottom: 1.5rem;
}

.stat-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    height: 100%;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.features-title, .providers-title {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.network-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.network-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.network-features li i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

.providers-list {
    color: #495057;
    margin-bottom: 1.5rem;
}

.network-comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}
