.lswjc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lswjc-stat-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lswjc-stat-box h3 {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.lswjc-stat-number {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #0073aa;
}

.lswjc-stat-number.error {
    color: #dc3232;
}

.lswjc-dashboard-actions {
    margin: 20px 0;
}

.lswjc-dashboard-actions .button {
    margin-right: 10px;
}

.lswjc-log-level {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.lswjc-level-debug {
    background-color: #666;
}

.lswjc-level-info {
    background-color: #0073aa;
}

.lswjc-level-warning {
    background-color: #ffb900;
}

.lswjc-level-error {
    background-color: #dc3232;
}

.lswjc-level-critical {
    background-color: #8b0000;
}

.lswjc-logs-filters {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.lswjc-logs-filters form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.lswjc-logs-actions {
    display: flex;
    gap: 10px;
}

.lswjc-sync-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.lswjc-sync-status.enabled {
    background-color: #46b450;
    color: #fff;
}

.lswjc-sync-status.disabled {
    background-color: #dc3232;
    color: #fff;
}

.lswjc-widget-stats p {
    margin: 5px 0;
}

.lswjc-widget-stats .lswjc-error {
    color: #dc3232;
    font-weight: bold;
}

.lswjc-notice {
    display: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
}

.lswjc-notice.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.lswjc-notice.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.lswjc-loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 782px) {
    .lswjc-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .lswjc-logs-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lswjc-logs-filters form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lswjc-logs-actions {
        justify-content: center;
    }
    
    .lswjc-dashboard-actions {
        text-align: center;
    }
    
    .lswjc-dashboard-actions .button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
} 