.page-wrapper {
			max-width: min(1400px, 95vw);
			margin: 0 auto;
			padding: 20px;

			background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
			border-radius: 12px;

			box-shadow: 0 8px 25px rgba(0,0,0,0.08);
		}

/* Bandeau d’actions compact */
.actions-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;       /* espacement serré entre boutons */
    margin-top: 1rem;
}

/* Boutons principaux fins et compacts */
.actions-bar a.btn,
.actions-bar button.btn,
.actions-bar .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.4rem;
    background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
    color: #fff;
    border: none;
    border-radius: 6px;       /* coins légèrement arrondis */
    font-size: 1rem;       /* police plus petite */
    font-weight: 500;          /* moins gras */
    line-height: 1.2;          /* hauteur de ligne réduite */
    padding: 0.4rem 1rem;      /* boutons plus compacts */
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;          /* largeur minimale uniforme */
	text-decoration: none; /* enlève le soulignement du label lié au <a> */
	font-family: inherit;   /* très important pour que la police de tous les boutons soit la même sinon héritage du a ou de button différent*/
}

.actions-bar a.btn,
.actions-bar button.btn,
.actions-bar .btn:hover {
    background: linear-gradient(90deg, #818cf8 0%, #38bdf8 100%);
    transform: translateY(-1px);
	text-decoration: none;
}

@media (max-width: 600px) {
	.page-wrapper {
        padding: 12px;
        border-radius: 0;
    }
	
    .actions-bar {
        flex-direction: column;
        align-items: center;
    }
	
	.actions-bar .btn,
    .actions-bar .btn-secondary,
    .actions-bar .btn-danger {
        display: block;
        margin: 0.4rem auto;
        min-width: 120px; /* légèrement réduit pour mobile */
        padding: 0.55rem 1.2rem; /* padding un peu plus petit sur mobile */
        font-size: 0.9rem; /* taille de police ajustée pour petits écrans */
		text-decoration: none; /* enlève le soulignement du label lié au <a> */
		font-family: inherit; 
    }

    .btn-mini {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
}