/* Variables globales :root */
:root {
    --light-grey: #999;
    --grey: #666;
    --dark-grey: #333;
    --light-off-white: #f0f0f5;
    --off-white: #f8f8f8;
    --dark-off-white: #e0e0e0;
    --blue: #007bff;
    --dark-blue: #0056b3;
    --red: #ff4d4d;
    --dark-red: #cc0000;
    --white: #ffffff;
    --dark-white: #ddd;
    --black: #000000;
    --font-size-l: 15px;
    --font-size-m: 14px;
    --font-size-s: 12px;
}

/* Réinitialisation globale */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Structure de base de la page */
body {
    height: 100%;
    width: 100%;
}

/* Titres et liens */
p, a, h1, h2, h3, h4 {
    margin: 0;
    color: var(--black);
    font-size: var(--font-size-m);
}

a {
    color: var(--blue);
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
}

img {
    width: 100%;
    height: 100%;
}

/* Classes utilitaires pour les tailles */
.font-m {
    font-size: var(--font-size-m);
}

.font-s {
    font-size: var(--font-size-s);
}

/* Conteneurs principaux */
.calendrier, .help {
    background-color: var(--light-off-white);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

.calendrier-container, .help-container {
    background-color: var(--white);
    margin: 5%;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.calendrier-container {
    max-width: 500px;
}