.provider-section {
    margin-bottom: 48px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.provider-card {
    padding: 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-body);
}

.provider-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.provider-card.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
}

.provider-name {
    font-weight: 600;
    font-size: 1rem;
}

.pricelist-section {
    margin-bottom: 48px;
}

.pricelist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.pricelist-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricelist-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricelist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pricelist-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-strong);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.tersedia {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.status-badge.habis {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.pricelist-body {
    flex: 1;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-strong);
}

.pricelist-card .pill-btn {
    width: 100%;
    margin-top: auto;
    text-decoration: none;
    color: inherit;
}

.pill-btn-disabled {
    background: #dc2626 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    pointer-events: none;
}

.pill-btn-disabled:hover {
    transform: none !important;
    background: #dc2626 !important;
}

.provider-pricelist-group {
    margin-bottom: 40px;
}

.provider-pricelist-group:last-child {
    margin-bottom: 0;
}

.provider-group-title {
    margin: 0 0 16px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-strong);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.history-section {
    margin-bottom: 48px;
}

.history-list {
    margin-top: 24px;
}

.history-empty {
    padding: 48px 24px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.history-empty p {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-strong);
}

.history-empty span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

