/* DNS/IP Lookup Styles */

/* DNS Records Display */
.dns-records-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dns-record-group {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

[data-bs-theme="dark"] .dns-record-group {
    background: #212529;
    border-color: #495057;
}

.dns-record-type-header {
    background: #052c65;
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-bs-theme="dark"] .dns-record-type-header {
    background: #6ea8fe;
    color: #000;
}

.dns-record-item {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.dns-record-item:last-child {
    border-bottom: none;
}

[data-bs-theme="dark"] .dns-record-item {
    border-bottom-color: #495057;
}

.dns-record-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #212529;
    word-break: break-all;
    flex: 1;
}

[data-bs-theme="dark"] .dns-record-value {
    color: #e9ecef;
}

.dns-record-ttl {
    font-size: 12px;
    color: #6c757d;
    flex-shrink: 0;
}

[data-bs-theme="dark"] .dns-record-ttl {
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .mode-selector-modern {
        grid-template-columns: 1fr;
    }

    .ip-info-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dns-record-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
