/* My IP Address Page Specific Styles */

.ip-display {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.info-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.info-table thead {
    display: none;
}

.info-table tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.info-table tbody tr:nth-child(even) {
    background: white;
}

.info-table tbody tr:hover {
    background: #e9ecef;
    transition: background 0.2s ease;
}

.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 35%;
    text-transform: capitalize;
}

.info-table td:last-child {
    color: var(--text-secondary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
}

.back-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.loading-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2em;
}
