/* Bento Grid Layout with Light Mode */
.dp-seo-audit-wrap {
    padding: 20px;
    background: #f5f5f5;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.dp-seo-audit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.dp-seo-audit-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dp-seo-audit-card:hover {
    transform: translateY(-5px);
}

.dp-seo-audit-card h2 {
    color: #222;
    margin-bottom: 15px;
}

.dp-seo-audit-card label {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

.dp-seo-audit-card input[type="url"],
.dp-seo-audit-wrap input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
}

.button-primary {
    background: #0073aa;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
}

.button-primary:hover {
    background: #005d82;
}

.button-primary:disabled {
    background: #999;
    cursor: not-allowed;
}

.button-secondary {
    background: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    margin-top: 15px;
}

.button-secondary:hover {
    background: #444;
}

progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
}

.notice-warning {
    background: #fff3cd;
    border-left-color: #ffba00;
    color: #856404;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dp-seo-audit-container {
        grid-template-columns: 1fr;
    }
}