.services-enum {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 2rem 1rem;
}

.services-btn {
    background: #e5e7eb;
    color: #374151;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
    outline: none;
    user-select: none;
}

.services-btn:hover {
    background: #d1d5db;
}

.services-btn:active {
    transform: scale(0.97);
}

.services-btn.active {
    background: #22c55e;
    color: #fff;
}

.services-btn.active:hover {
    background: #16a34a;
}

/* TOTAL */

.total-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem auto;
    max-width: 280px;
    background: #f9fafb;
    border: 0.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #6b7280;
    transition: all 0.2s ease;
}

.total-bar .amount {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.total-bar.has-total {
    border-color: #22c55e;
    background: #f0fdf4;
}

.total-bar.has-total .amount {
    color: #16a34a;
}