/* Domain Age Checker Styles */
.domain-age-wrap {
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.da-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.da-card h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #1f2937;
    font-weight: 600;
}

.da-desc {
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 14px;
}

.da-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.da-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.da-input:focus {
    border-color: #2563eb;
}

.da-btn {
    background: #2563eb;
    color: white;
    border: none;
    /*padding: 12px 20px;*/
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.da-btn:hover {
    background: #1d4ed8;
}

.da-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.da-loading {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 20px;
}

.da-result {
    margin-top: 20px;
}

.da-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.da-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.da-table th,
.da-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.da-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.da-table td {
    color: #1f2937;
    font-size: 14px;
}

.da-table tr:last-child td {
    border-bottom: none;
}

.da-table tr:hover td {
    background: #f8fafc;
}

.da-domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.da-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.da-expand-btn:hover {
    background: #f3f4f6;
}

.da-expand-icon {
    display: inline-block;
    width: 16px;
    text-align: center;
}

.da-domain-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
}

.da-details {
    margin-top: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.da-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.da-detail-row:last-child {
    border-bottom: none;
}

.da-detail-row strong {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.da-detail-row span {
    color: #1f2937;
    text-align: right;
    word-break: break-all;
}

.da-archive-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.da-archive-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.da-age-highlight {
    font-weight: 600;
    color: #059669;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .da-form {
        flex-direction: column;
    }
    
    .da-card {
        margin: 10px;
        padding: 16px;
    }
    
    .da-table {
        font-size: 12px;
    }
    
    .da-table th,
    .da-table td {
        padding: 8px 12px;
    }
}
