/* Public CSS */

/* Container Utama */
.wp-sss-dashboard-wrap {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 1000px;
    margin: 20px 0;
}

/* Query Form */
#wp-sss-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    align-items: end;
}

#wp-sss-controls label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

#wp-sss-controls input, #wp-sss-controls select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#wp-sss-scrape-button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

#wp-sss-scrape-button:hover {
    background: #135e96;
}

/* Hasil Tabel */
.sss-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.sss-table th {
    background: #f1f1f1;
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #ddd;
}

.sss-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

/* Badge Sentimen */
.sentiment-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.sentiment-positive { background: #d4edda; color: #155724; }
.sentiment-negative { background: #f8d7da; color: #721c24; }
.sentiment-neutral  { background: #e2e3e5; color: #383d41; }

.score-text { font-family: monospace; font-weight: bold; }
