/* DIGIDESK NEXUS SEO - Frontend Styles */

.digidesk-seo-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #23282d;
    color: white;
    z-index: 9999;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.digidesk-seo-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.digidesk-score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 0deg 120deg, #FFC107 120deg 240deg, #F44336 240deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.digidesk-recommendations {
    margin: 20px 0;
}

.digidesk-recommendation {
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #0073aa;
    background: #f8f9fa;
}

.digidesk-recommendation.high {
    border-left-color: #dc3545;
}

.digidesk-recommendation.medium {
    border-left-color: #ffc107;
}

.digidesk-recommendation.low {
    border-left-color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .digidesk-seo-dashboard {
        padding: 10px;
    }
}
