/* Definizione di variabili per i colori principali */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --card-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Stili comuni per le card e i contenitori */
.content-card {
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
}

.content-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.125);
    background-color: rgba(0,0,0,0.03);
}

.content-card-body {
    padding: 1.25rem;
}

/* Stili per i titoli e sottotitoli */
.h2Title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Stili per i DataGrid di DevExtreme */
.dx-datagrid-header-panel {
    padding: 0.5rem;
    background-color: #f8f9fa;
}

.dx-datagrid .dx-datagrid-table .dx-row > td {
    vertical-align: middle;
}

/* Stili per i form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

    .form-container .dx-fieldset {
        margin-bottom: 1.5rem;
    }

/* Stili per elementi di navigazione */
.btn-navigation {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Stili per i riquadri statistici */
.stat-item {
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

    .stat-item:hover {
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    }

    .stat-item .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .stat-item .stat-label {
        color: #6c757d;
        font-size: 0.9rem;
    }
