/* Offline status styles */
.network-status {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    z-index: 10000;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.network-status.offline {
    background-color: #e74c3c;
    color: white;
}

.network-status.online {
    background-color: #27ae60;
    color: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Error message styles */
.error-message {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 20px 0;
}

.error-message h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.error-message p {
    color: #6c757d;
    margin: 5px 0;
}

.retry-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.retry-btn:hover {
    background-color: #0056b3;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}