/* ============================================
   SSL-DNS-LOOKUP.HTML - SAYFA ÖZEL STİLLER
   DNS Lookup - Domain DNS Kayıtları ve SSL Kontrolü
   ============================================ */

/* 1. DNS LAYOUT GRID */

.dns-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .dns-main-grid {
        grid-template-columns: 1fr;
    }
}

/* 2. DNS EDITOR CARDS */

.dns-editor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.dns-editor-card:hover {
    box-shadow: 0 12px 40px rgba(38, 188, 194, 0.15);
    border-color: rgba(38, 188, 194, 0.3);
}

.dns-editor-card:last-child {
    margin-bottom: 0;
}

/* 3. DNS CARD TITLES */

.dns-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.dns-card-title i {
    font-size: 1.5rem;
}

/* Primary (Turkuaz) */
.dns-title-primary {
    color: var(--primary, #26bcc2);
}

.dns-title-primary i {
    color: var(--primary, #26bcc2);
}

/* Purple */
.dns-title-purple {
    color: #a78bfa;
}

.dns-title-purple i {
    color: #a78bfa;
}

/* Green */
.dns-title-green {
    color: #22c55e;
}

.dns-title-green i {
    color: #22c55e;
}

/* 4. FORM ELEMENTS */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.dns-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main, #e2e8f0);
    margin-bottom: 0.25rem;
}

/* DNS Input */
.dns-input,
.dns-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main, #e2e8f0);
    font-size: 0.9375rem;
    font-family: "Courier New", Courier, monospace;
    transition: all 0.3s ease;
    resize: vertical;
}

.dns-input:hover,
.dns-textarea:hover {
    border-color: var(--primary, #26bcc2);
}

.dns-input:focus,
.dns-textarea:focus {
    outline: none;
    border-color: var(--primary, #26bcc2);
    box-shadow: 0 0 0 3px rgba(38, 188, 194, 0.1);
}

.dns-input::placeholder,
.dns-textarea::placeholder {
    color: rgba(226, 232, 240, 0.4);
}

.form-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.6);
    margin-top: 0.25rem;
}

.form-help i {
    font-size: 0.875rem;
}

/* 5. RECORD TYPES GRID */

.record-types-grid,
.dns-servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .record-types-grid,
    .dns-servers-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(38, 188, 194, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary, #26bcc2);
}

.checkbox-label input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--primary, #26bcc2);
    outline-offset: 2px;
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--text-main, #e2e8f0);
}

/* 6. BUTTONS */

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.primary-btn[aria-busy="true"] {
    position: relative;
}

.primary-btn[aria-busy="true"]::after {
    content: "";
    position: absolute;
    right: 1rem;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--primary, #26bcc2);
}

.secondary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button {
        width: 100%;
    }
}

/* 7. SSL SERVICES */

.ssl-info-text {
    color: var(--text-main, #e2e8f0);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ssl-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ssl-service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--success, #0ea5e9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.ssl-service-link:hover {
    border-color: var(--success, #0ea5e9);
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(4px);
}

.ssl-service-link i {
    font-size: 1rem;
}

/* 8. DNS RESULTS CONTAINER */

.dns-results-container {
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Scrollbar */
.dns-results-container::-webkit-scrollbar {
    width: 8px;
}

.dns-results-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.dns-results-container::-webkit-scrollbar-thumb {
    background: var(--primary, #26bcc2);
    border-radius: 4px;
}

.dns-results-container::-webkit-scrollbar-thumb:hover {
    background: var(--success, #0ea5e9);
}

/* 9. STATE COMPONENTS */

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(38, 188, 194, 0.2);
    border-top-color: var(--primary, #26bcc2);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state p {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.6);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state i {
    font-size: 3rem;
    color: rgba(226, 232, 240, 0.3);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.6);
    margin: 0.5rem 0;
}

.empty-state-hint {
    font-size: 0.875rem !important;
    color: rgba(226, 232, 240, 0.4) !important;
}

/* 10. DNS RESULT COMPONENTS */

/* DNS Domain Header */
.dns-domain-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary, #26bcc2), var(--success, #0ea5e9));
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.dns-domain-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.dns-domain-header i {
    font-size: 1.5rem;
    color: white;
}

.dns-domain-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
    word-break: break-all;
}

.dns-performance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
}

.dns-performance i {
    font-size: 1rem;
}

/* DNS Record Group */
.dns-record-group {
    margin-bottom: 2rem;
}

.dns-record-group:last-child {
    margin-bottom: 0;
}

.dns-record-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main, #e2e8f0);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.dns-record-title i {
    color: var(--primary, #26bcc2);
}

/* DNS Record List */
.dns-record-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* DNS Record Card */
.dns-record-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
    position: relative;
}

.dns-record-card:hover {
    border-color: var(--primary, #26bcc2);
    box-shadow: 0 4px 20px rgba(38, 188, 194, 0.1);
    transform: translateX(4px);
}

.dns-record-card:hover .copy-record-btn {
    opacity: 1;
}

.copy-record-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: rgba(38, 188, 194, 0.2);
    border: 1px solid rgba(38, 188, 194, 0.3);
    border-radius: 6px;
    color: var(--primary, #26bcc2);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-record-btn:hover {
    background: rgba(38, 188, 194, 0.3);
    transform: scale(1.1);
}

.copy-record-btn i {
    font-size: 0.875rem;
}

/* Record Header */
.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.record-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.5rem;
    background: linear-gradient(135deg, var(--primary, #26bcc2), var(--success, #0ea5e9));
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.record-ttl {
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.6);
    font-weight: 500;
}

/* Record Body */
.record-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.record-field {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
    font-size: 0.875rem;
    align-items: start;
}

@media (max-width: 768px) {
    .record-field {
        grid-template-columns: 80px 1fr;
    }
}

.record-field strong {
    color: rgba(226, 232, 240, 0.7);
    font-weight: 600;
}

.record-data {
    color: var(--text-main, #e2e8f0);
    word-break: break-all;
    font-family: "Courier New", Courier, monospace;
}

.txt-data {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

.priority-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Email Authentication Badges */
.email-auth-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.auth-badge.valid {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.auth-badge.warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.auth-badge.invalid {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* WHOIS Container */
.whois-container {
    min-height: 200px;
}

.whois-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .whois-info-grid {
        grid-template-columns: 1fr;
    }
}

.whois-info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.whois-info-label {
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.whois-info-value {
    font-size: 0.9375rem;
    color: var(--text-main, #e2e8f0);
    font-family: "Courier New", Courier, monospace;
}

.whois-expiry-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    color: #fbbf24;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.whois-expiry-warning i {
    font-size: 1rem;
}

/* Propagation Status */
.propagation-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.propagation-status.synced {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.propagation-status.partial {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.propagation-status i {
    font-size: 1rem;
}

/* Server Badge */
.server-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Reverse DNS Info */
.reverse-dns-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 8px;
    color: #a78bfa;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.reverse-dns-info i {
    font-size: 1rem;
}

.reverse-dns-info strong {
    color: #a78bfa;
}

.reverse-dns-info span {
    color: var(--text-main, #e2e8f0);
    font-family: "Courier New", Courier, monospace;
}

/* Bulk Results */
.bulk-results-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bulk-domain-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.bulk-domain-card:hover {
    border-color: var(--primary, #26bcc2);
    box-shadow: 0 4px 20px rgba(38, 188, 194, 0.1);
}

.bulk-domain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bulk-domain-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bulk-domain-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main, #e2e8f0);
    font-family: "Courier New", Courier, monospace;
}

.bulk-domain-info i {
    font-size: 1.25rem;
}

.bulk-query-time {
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.6);
    font-weight: 500;
}

.bulk-domain-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.record-count-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(38, 188, 194, 0.2);
    color: var(--primary, #26bcc2);
    border: 1px solid rgba(38, 188, 194, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Text Colors */
.text-success {
    color: #22c55e;
}

.text-error {
    color: #ef4444;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 11. DARK MODE SUPPORT */

@media (prefers-color-scheme: dark) {
    .dns-editor-card {
        background: rgba(30, 41, 59, 0.7);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .dns-editor-card:hover {
        border-color: rgba(38, 188, 194, 0.3);
    }

    .dns-input,
    .dns-textarea {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        color: #f1f5f9;
    }

    .dns-input::placeholder,
    .dns-textarea::placeholder {
        color: rgba(226, 232, 240, 0.4);
    }

    .secondary-btn {
        background: rgba(30, 41, 59, 0.5);
        color: #f1f5f9;
    }

    .ssl-service-link {
        background: rgba(30, 41, 59, 0.5);
    }

    .dns-results-container {
        background: rgba(15, 23, 42, 0.5);
    }

    .dns-record-card {
        background: rgba(30, 41, 59, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .txt-data {
        background: rgba(15, 23, 42, 0.5);
    }
    
    .whois-info-item {
        background: rgba(15, 23, 42, 0.5);
    }
    
    .whois-info-label {
        color: rgba(226, 232, 240, 0.6);
    }
    
    .whois-info-value {
        color: #f1f5f9;
    }
}

/* 12. LIGHT MODE OVERRIDES */

@media (prefers-color-scheme: light) {
    .dns-editor-card {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .dns-editor-card:hover {
        box-shadow: 0 12px 40px rgba(38, 188, 194, 0.12);
        border-color: rgba(38, 188, 194, 0.3);
    }

    .dns-card-title,
    .dns-form-label,
    .checkbox-label span {
        color: #1e293b;
    }

    .dns-card-title {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .dns-input,
    .dns-textarea {
        background: white;
        border-color: rgba(0, 0, 0, 0.1);
        color: #1e293b;
    }

    .dns-input::placeholder,
    .dns-textarea::placeholder {
        color: rgba(0, 0, 0, 0.4);
    }

    .form-help {
        color: rgba(0, 0, 0, 0.6);
    }

    .checkbox-label:hover {
        background: rgba(38, 188, 194, 0.08);
    }

    .ssl-info-text {
        color: #1e293b;
    }

    .ssl-service-link {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .ssl-service-link:hover {
        background: rgba(14, 165, 233, 0.1);
    }

    .dns-results-container {
        background: rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .loading-state p,
    .empty-state p {
        color: rgba(0, 0, 0, 0.6);
    }

    .empty-state i {
        color: rgba(0, 0, 0, 0.3);
    }

    .empty-state-hint {
        color: rgba(0, 0, 0, 0.4) !important;
    }

    .dns-record-title {
        color: #1e293b;
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .dns-record-card {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .dns-record-card:hover {
        box-shadow: 0 4px 20px rgba(38, 188, 194, 0.15);
    }

    .record-header {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .record-ttl {
        color: rgba(0, 0, 0, 0.6);
    }

    .record-field strong {
        color: rgba(0, 0, 0, 0.7);
    }

    .record-data {
        color: #1e293b;
    }

    .txt-data {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }
    
    .whois-info-item {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.1);
    }
    
    .whois-info-label {
        color: rgba(0, 0, 0, 0.6);
    }
    
    .whois-info-value {
        color: #1e293b;
    }
    
    .copy-record-btn {
        background: rgba(38, 188, 194, 0.1);
        border-color: rgba(38, 188, 194, 0.3);
    }
    
    .copy-record-btn:hover {
        background: rgba(38, 188, 194, 0.2);
    }
}

/* 12. RESPONSIVE ADJUSTMENTS */

@media (max-width: 768px) {
    .dns-results-container {
        max-height: 400px;
    }

    .dns-domain-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dns-domain-header-left {
        width: 100%;
    }

    .dns-domain-header h3 {
        font-size: 1rem;
    }
    
    .dns-performance {
        width: 100%;
        justify-content: center;
    }

    .txt-data {
        font-size: 0.75rem;
    }
    
    .copy-record-btn {
        opacity: 1;
        position: static;
        margin-bottom: 0.5rem;
    }
    
    .whois-info-grid {
        grid-template-columns: 1fr;
    }
    
    .email-auth-badges {
        flex-direction: column;
    }
    
    .bulk-domain-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bulk-query-time {
        align-self: flex-end;
    }
}

/* 13. FOCUS VISIBLE (ACCESSIBILITY) */

.dns-input:focus-visible,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
    outline: 2px solid var(--primary, #26bcc2);
    outline-offset: 2px;
}

/* 14. PRINT STYLES */

@media print {
    .action-buttons,
    .ssl-services {
        display: none;
    }

    .dns-record-card,
    .dns-record-group {
        break-inside: avoid;
    }

    .dns-results-container {
        max-height: none;
        overflow: visible;
    }
}
