
.network-footer-wrap {
    margin: 20px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.network-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.continent-section {
    margin-bottom: 30px;
}

.continent-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.country-section {
    margin-bottom: 20px;
}

.country-section h4 {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 10px;
}

.country-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-section li {
    margin: 0;
    padding: 0;
}

.country-section a {
    text-decoration: none;
    color: #0073aa;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.country-section a:hover {
    background-color: #f0f0f0;
    color: #00a0d2;
}

/* Theme variations */
.theme-dark {
    background: #333;
    color: #fff;
}

.theme-dark .continent-section h3 {
    color: #fff;
    border-bottom-color: #555;
}

.theme-dark .country-section h4 {
    color: #ccc;
}

.theme-dark .country-section a {
    color: #fff;
}

.theme-dark .country-section a:hover {
    background-color: #444;
}

.theme-light {
    background: #fff;
    border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .country-section ul {
        flex-direction: column;
        gap: 5px;
    }

    .country-section a {
        display: block;
    }
}

.network-footer-error {
    color: #d63638;
    padding: 10px;
    background: #fde8e8;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
    margin: 10px 0;
}
