/* Custom styles to complement Tailwind CSS */

body {
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    border: 1px solid #e2e8f0;
}

th {
    background-color: #3182ce;
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f7fafc;
}

tr:hover {
    background-color: #e2e8f0;
    transition: background-color 0.3s ease;
}

.network-info-item {
    background-color: #f0f4f8;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.network-info-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0;
    }

    td {
        border: none;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }
}