:root {
    --bg-color: #f0f2f5;
    --accent-color: #000000;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

body {
    background-color: var(--bg-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a1a;
}

.main-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.input-panel {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    position: sticky;
    top: 40px;
}

.data-panel {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    min-height: 80vh;
}

.machine-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.machine-control:focus {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
    outline: none;
}

.custom-table thead {
    background: #f8fafc;
    border-bottom: 2px solid #edf2f7;
}

.custom-table th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: #64748b;
    padding: 15px;
}

.custom-table td {
    padding: 18px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.pagination .page-link {
    border: none;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 10px;
    color: #64748b;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    color: white;
}

.flavor-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 100px;
    font-weight: 700;
}

/* Lang Switcher Style */
.lang-switcher {
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lang-btn {
    border: none;
    background: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.lang-btn.active { 
    color: var(--accent-color); 
    text-decoration: underline; 
}

/* Profil Rasa */
.taste-profile-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    border: 1px dashed #cbd5e1;
}

.fw-800 { font-weight: 800; }
.fw-600 { font-weight: 600; }