@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");


* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
  /* Couleurs de base */
:root {
    --primary-color: #018f35; /* Vert */
    --secondary-color: #feec00; /* Jaune */
    --text-color: #333333; /* Gris foncé */
    --text-secondary-color: #666666; /* Gris moyen */
    --background-color: #f8f9fa; /* Gris très clair */
    --border-color: #dddddd; /* Gris clair */
    --accent-color: #ffffff; /* Blanc */
}

/* Styles généraux */
body {
    /*font-family: 'Arial', sans-serif;*/
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);

    font-family: "Poppins", sans-serif;
    font-size: 0.8375rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
    outline: 0;
}

@media screen and (min-width: 992px) {
    .sidebar {
        position: fixed;
        height: 100vh;
        overflow-y: auto; /* Permet de faire défiler le menu s'il est trop long */
    }
    
}


.sidebar #sidebarMenu {
    width: 100% !important;
  }



/* En-tête */
.header {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 20px;
    text-align: center;
}

/* Boutons */
/*.button, .btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover, .btn:hover {
    background-color: #016f2a; /* Une nuance plus foncée du vert */
}*/

/* Cartes */
.card {
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tableaux */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Formulaire */
.input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Accents jaunes */
.highlight {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--accent-color);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.fc-daygrid-day-frame {
    cursor: pointer;
  }

  .break-word {
    word-break: break-word;
    white-space: pre-wrap;
}
.col-description {
    max-width: 300px;
}