.dsc-pro-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.dsc-pro-container[data-theme="dark"] {
    background: #1a1a1a;
    color: #fff;
}

.dsc-pro-search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

#dsc-domain-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.dsc-pro-button {
    padding: 0.75rem 1.5rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.dsc-pro-button:hover {
    background: #45a049;
}

.dsc-pro-progress {
    text-align: center;
    margin: 2rem 0;
}

.dsc-pro-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.dsc-pro-results {
    margin-top: 2rem;
}

.result-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-good { background: #4CAF50; }
.status-warning { background: #ff9800; }
.status-critical { background: #f44336; }

.hidden { display: none; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}