/* MercUsa - Minimal Custom Styles */

/* Rimuove padding dai container Bootstrap nelle pagine */
.app-content .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Card more subtle shadows */
.card {
    border: 1px solid #e9ecef !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Stat cards minimal */
.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Tables more subtle */
.table {
    font-size: 0.875rem;
}

.table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* Buttons consistency */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Remove custom enterprise classes - use Bootstrap */
.text-primary-enterprise {
    color: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-content {
        padding: 1rem;
    }
}

/* ── CategoryPicker widget ─────────────────────────────────────────────────── */
.cp-wrap .cp-select {
    border-right: none;
    border-radius: 6px 0 0 6px;
}
.cp-wrap .cp-refresh-btn {
    border-radius: 0 6px 6px 0;
    color: #6c757d;
    transition: color .2s;
}
.cp-wrap .cp-refresh-btn:hover {
    color: #0d6efd;
}
.cp-new-panel {
    animation: cpSlideIn .15s ease;
}
@keyframes cpSlideIn {
    from { opacity:0; transform: translateY(-4px); }
    to   { opacity:1; transform: translateY(0); }
}
.cp-new-input:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .2rem rgba(25,135,84,.2);
}
.cp-badge {
    margin-top: 4px;
}
.cp-badge-text {
    font-size: 0.78rem;
    letter-spacing: .3px;
}
