ul {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
}

a {
    text-decoration: none;
    font-family: "Fredoka", sans-serif;
}
body {
    height: calc(100vh - env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
}
.hidden {
    display: none;
}
.disabled {
    pointer-events: none;
    opacity: 0.5;
}
#spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
#footer-container-home {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #f8f9fa;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Fredoka", sans-serif;
    background-color: #268e8f;
    color: #f2F5f6;
    margin: 0;
}
button > a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
/* header footer */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
#header-container {
    border-radius: 0 0 20px 20px;
    width: 100%;
    background-color: #066e6f;
}
/* #footer-container {
    height: 100%;
    margin: auto 0 0 0;
    height: 50px;
    border-radius: 20px;
    width: 100%;
} */
footer {
    background: #066e6f;
    color: #fcfeff;
    font-size: 20px;
    height: 100%;
    border-radius: 20px 20px 0 0;
}
.page_content {
    flex: 1;
}
.logo_img {
    width: 83px;
    height: 83px;
}
.logo_img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#play_icon {
    margin: 0 20px;
}
/* welcome page */
.welcome_container {
    margin: 50px 20px 0 20px;
}
.welcome_connection_button {
    display: flex;
    flex-direction: column;
}
.welcome_connection_button > button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 800;
    border-radius: 20px;
    background-color: #c63434;
    border: none;
    background-image: linear-gradient(to bottom, rgb(83 80 81 / 47%), rgba(83,80,81,0));
}
#user_welcome {
    text-align: center;
}
#user_welcome > h2 {
    margin-bottom: 0;
    font-size: 30px;
}
#user_welcome > div {
    font-size: 20px;
}
.welcome_connection_button > button > a {
    color: #fcfeff;
}
#welcome_name {
    text-transform: capitalize;
}
#no_user_welcome > h2 {
    margin-bottom: 0;
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(10px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(10px);
    }
    40% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.svg_hand_down {
    display: flex;
    justify-content: center;
    height: 50px;
    animation: bounce 4s infinite;
}
/* login - register */
#registration-form, #login-form {
    display: flex;
    flex-direction: column;
    place-content: center;
    margin: 0 20px;
}
#registration-form > label, #login-form > label {
    font-size: 30px;
    text-transform: uppercase;
}
#registration-form > input, #login-form > input {
    border-radius: 20px;
    border: solid 1px #066e6f;
    height: 50px;
    font-size: 20px;
    font-family: 'Fredoka', sans-serif;
    color: #c63434;
    padding-left: 10px;
}
.register_info {
    margin: 0 20px;
    font-size: 20px;
}
.login_title {
    margin: 20px 20px;
}
#login_error,  #register_error {
    margin: 20px;
    background: #c63434;
    padding: 20px;
    font-size: 17px;
    visibility: hidden;
}
.table_content_score .login_cell {
    justify-content: left;
}
#registration-form > button, #login-form > button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 800;
    border-radius: 20px;
    background-color: #c63434;
    border: none;
    background-image: linear-gradient(to bottom, rgb(83 80 81 / 47%), rgba(83,80,81,0));
    color: #fcfeff;
    font-family: 'Fredoka', sans-serif;
}
/* profile - options */
#logoutButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    font-size: 30px;
    letter-spacing: 4px;
    font-weight: 800;
    border-radius: 20px;
    background-color: #c63434;
    border: none;
    background-image: linear-gradient(to bottom, rgb(83 80 81 / 47%), rgba(83,80,81,0));
    color: #fcfeff;
    font-family: 'Fredoka', sans-serif;
}
.profile_section {
    margin: 0 20px;
}
.remind_profile {
    text-align: center;
    font-size: 25px;
}
.remind_profile > span {
    color: #f39e11;
    font-size: 30px;
}
.options_section > ul {
    display: flex;
    flex-direction: column;
    padding: 0 7px;
    margin-top: 20px;
    background: #066e6f;
    font-size: 20px;
}
.options_section > ul > li, .options_section > ul > li > a {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    width: 100%;
    color: #fcfeff;
}
.options_section > ul > li > div:first-child {
    width: fit-content;
}
.options_section > ul > li > div:nth-child(2), .options_section > ul > li > a > div:nth-child(2) {
    width: 100%;
    padding-left: 20px;
}
.sound-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.sound-toggle input {
    display: none;
}

.sound-toggle label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4a01a8a;
    border-radius: 20px;
    cursor: pointer;
}

.sound-toggle label::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 18px;
    height: 18px;
    background-color: #fcfeff;
    border-radius: 50%;
    transition: 0.3s;
}

.sound-toggle input:checked + label {
    background-color: #f4a21a;
}

.sound-toggle input:checked + label::before {
    transform: translateX(20px);
}
.sound_profile_icon, .terms_of_use_icon {
    padding: 5px;
    background-color: #8a2d28;
    border-radius: 3px;
}
.legal_notice {
    width: 25px;
    height: 25px;
    padding: 5px;
    background-color: #f4a21a;
    border-radius: 3px;
}
.terms_of_use_icon {
    width: 25px;
    height: 25px;
}
.a_propos_img {
    padding: 10px;
    background-color: #c63434;
    border-radius: 3px;
}
.arrow_icon {
    width: 20px;
    height: 20px;
}
.how_to_play_icon {
    width: 35px;
    height: 35px;
    background-color: #f4a21a;
    border-radius: 3px;
}
/* how to play */
.how_to_play_section, .privacy_policy_section {
    padding: 20px;
}
.how_to_play_intro {
    font-size: 20px;
    text-align: center;
    border: solid 3px #f4a21a;
    padding: 7px 10px;
    border-radius: 6px;
}
.how_to_play_intro span {
    font-size: 15px;
}
.how_to_play_title, .privacy_title {
    font-size: 20px;
}
.how_to_play_paragraph {
    font-size: 15px;
    display: flex;
    flex-direction: column;
}
.how_to_play_paragraph.hammer {
    flex-direction: row;
}
.how_to_play_section img {
    max-width: 100%;
    height: auto;
}
.how_to_play_paragraph > img {
    margin: auto;
    width: 125px;
    border: solid 1px;
}
.how_to_play_paragraph > .hammer2 {
    width: 180px;

}
.how_to_play_subtitle {
    font-size: 17px;
    text-decoration: underline;
}
.video_example {
    display: flex;
    place-content: center;
}
.points_section {
    display: flex;
    justify-content: space-around;
}
.points_section > img {
    width: 100px;
    height: 100px;
}
/* scores */
.title_score {
    margin: 10px 20px 0 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.table_content_score.current-user {
    background-color: #f4a21a;
}
#players_list {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: solid 1px #066e6f;
    flex: 1;
    margin-bottom: 10px;
}
#supports_player {
    font-size: 20px;
    margin: 0 20px 10px;
    background-color: #c63434;
    padding: 8px;
    border-radius: 20px;
    font-weight: 700;
    align-self: center;
    text-align: center;
    width: 100%;
}
.score_section {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.table_title_score {
    display: flex;
    justify-content: space-between;
    flex: 1;
    background-color: #066e6f;
    border-radius: 20px 20px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
}
.table_content_score {
    display: flex;
    justify-content: space-between;
    flex: 1;
    font-size: 20px;
}
.table_content_score td, .table_title_score th {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* styles piece to play */
.piece_and_swicth {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 20px;
    justify-content: center;
}
#piece_to_play {
    display: flex;
    justify-content: center;
    height: 120px;
    border: solid 1px #c63434;
    padding: 0;
    flex: 1;
    width: 150px;
    background-color: #fcfeffe3;
}
.small_piece {
    transform: scale(0.7);
  }
.completed_line {
    opacity: 0.5;
}

#switch_button {
    margin-left: auto;
    margin-right: 22px;
}
@keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }
  /* Add this to your CSS file */

@keyframes bubbleUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px);
        opacity: 1;
    }
    100% {
        transform: translate(150px, -150px); /* Adjust this to match the position of your switch button */
        opacity: 0;
    }
}

.bubble {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    z-index: 1000;
    animation: bubbleUp 2s ease-out forwards;
}

  .switchBtn_anim  {
    animation: blink 1s 3, pulse 1s 5;
}
  
.unavailable_btn {
    cursor: not-allowed;
}
.swicthBtn {
    border: none;
    background: transparent;
}
.swicthBtn.unavailable_btn {
    opacity: 0.3;
}
.swicthBtn:active {
    background-color: #7A2020;
}
#switch_count {
    position: absolute;
    right: 20px;
    background: #7A2020;
    color: #f4a21a;
    font-weight: bold;
    font-size: medium;
    justify-content: center;
    border: solid 1px #7A2020;
    width: 13px;
    padding: 5px;
    border-radius: 50%;
    height: 15px;
    display: flex;
    line-height: 13px;
}
.board {
    background-color: #fcfeff;
}
#board_scores {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 20px 20px;
    background: #7A2020;
    padding: 7px;
}
.best_score_ever_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.best_score_title {
    color: #f4a21a;
    font-size: 12px !important;
}
.your_score_section {
    display: flex;
    flex-direction: column;
    align-self: self-end;
    align-items: center;
}
.your_score_img {
    font-size: 25px;
    color: #f4a21a;
}
#score_this_game {
    font-size: 30px;
}
#best_score_ever, #best_score_player {
    font-size: 20px;
}
/* styles scores */

/* styles comments */
#comment_section, #simple_score_section, #comment_bonus, #confirm_section {
    display: none;
}
#comment_button_replay, #comment_button_quit {
    display: none;
    text-transform: uppercase;
    font-size: 20px;
    justify-content: center;
    flex: 1;
    height: 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    align-items: center;
    font-family: "Fredoka", sans-serif;
    background-color: #f4a21a;
    color: white;
    font-weight: 800;
}
.comment_image_section {
    width: 210px;
    height: 130px;
    align-self: center;
}
.comment_image_section > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.game_content {
    position: relative;
    display: flex;
    flex-direction: column;
}
.double_button_endgame {
    display: flex;
    margin-top: 5px;
}
.comment_section {
    width: 90%;
    margin: auto;
    position: absolute;
    transform: (50%, 50%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    flex-direction: column;
}
@keyframes moveUp {
    0% {
        transform: translate(-50%, 50%);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 0;
    }
}
#confirm_section {
    position: absolute;
    padding: 10px;
    background-color: #7A2020;
    width: 90%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    text-align: center;
}
.confirm_buttons {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
}
#confirm_section button {
    height: 40px;
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 800;
    border-radius: 20px;
    background-color: #f4a21a;
    color: #7A2020;
    border: solid 1px #ffffff;
    padding: 8px;
}
.confirm_container > p {
    margin-bottom: 0;
}
#simple_score_section {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
}
#simple_score_section.animate {
    animation: moveUp 1s forwards;
}
#comment_content {
    font-size: 30px;
    text-align: center;
    background-color: #c63434;
    color: #f4a21a;
    padding: 10px;
    border-radius: 20px 0;
}
#comment_bonus {
    background: #f4a21a;
    align-self: center;
    font-size: 22px;
    border-radius: 0 20px;
    padding: 10px;
    color: #c63434;
}
/* styles gameboard pieces and cells */
#sound-toggle-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
    display: inline-block;
    line-height: 48px;
    text-align: center;
}

#sound-icon.sound-on::before {
    content: '🔊';
}

#sound-icon.sound-off::before {
    content: '🔇';
}
.footer_gameplay {
    margin: 0 20px;
    float: right;
}
#game-board-container {
    border: solid 1px #f6b26b;
    width: fit-content;
    margin: 10px auto;
}
.piece_component {
    border: solid 0.1px #f6b26b;
    transition: transform 0.2s ease-in-out;
}
.cell {
    background-color: #f3f3f3;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 0.1px solid #f6b26b;
}
#game-board-container > .board .cell.used-cell {
    background-color: #268e8f;
    transition: background-color 0.3s ease;
    border: solid 0.1px #f6b26b;
}
@keyframes pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.cell.pop {
    animation: pop 0.3s forwards;
}
.cell.hovered {
    background-color: cadetblue;
}
#game-board-container > .board .cell.used-cell.hovered, #game-board-container > .board .cell.hovered {
    background-color: black;
    opacity: 0.6;
 }
 .cell:nth-child(n + 1):nth-child(-n + 3),
 .cell:nth-child(n + 7):nth-child(-n + 12),
 .cell:nth-child(n + 16):nth-child(-n + 21),
 .cell:nth-child(n + 25):nth-child(-n + 27),
 .cell:nth-child(n + 31):nth-child(-n + 33),
 .cell:nth-child(n + 40):nth-child(-n + 42),
 .cell:nth-child(n + 49):nth-child(-n + 51),
 .cell:nth-child(n + 55):nth-child(-n + 57),
 .cell:nth-child(n + 61):nth-child(-n + 66),
 .cell:nth-child(n + 70):nth-child(-n + 75),
 .cell:nth-child(n + 79):nth-child(-n + 81) {
    background-color: #b7b7b7;
 }

 .cell:nth-child(3), .cell:nth-child(12), .cell:nth-child(21),
 .cell:nth-child(33), .cell:nth-child(42), .cell:nth-child(51),
 .cell:nth-child(57), .cell:nth-child(66), .cell:nth-child(75) {
     border-right: solid 0.1px #f6b26b;
 }
 .cell:nth-child(7), .cell:nth-child(16), .cell:nth-child(25) ,
 .cell:nth-child(31), .cell:nth-child(40), .cell:nth-child(49),
 .cell:nth-child(61), .cell:nth-child(70), .cell:nth-child(79) {
     border-left: solid 0.1px #f6b26b;
 }

 .cell:nth-child(19), .cell:nth-child(20), .cell:nth-child(21),
 .cell:nth-child(25), .cell:nth-child(26), .cell:nth-child(27),
 .cell:nth-child(49), .cell:nth-child(50), .cell:nth-child(51) {
     border-bottom: solid 0.1px #f6b26b;
 }
 .cell:nth-child(31), .cell:nth-child(32), .cell:nth-child(33),
 .cell:nth-child(55), .cell:nth-child(56), .cell:nth-child(57),
 .cell:nth-child(61), .cell:nth-child(62), .cell:nth-child(63) {
     border-top: solid 0.1px #f6b26b;
 } 
/* Toast de récompense de connexion quotidienne */
.daily-reward-toast {
    position: fixed;
    top: max(60px, env(safe-area-inset-top, 0px) + 50px);
    left: 50%;
    transform: translateX(-50%);
    background: #268e8f;
    color: #fcfeff;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-align: center;
    max-width: 85vw;
    animation: daily-reward-slide-in 0.3s ease-out;
}
.daily-reward-toast-fadeout {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
@keyframes daily-reward-slide-in {
    from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Bouton pelle (destruction d'une case) */
.pelleBtn {
    border: none;
    background: transparent;
}
.pelleBtn.unavailable_btn {
    opacity: 0.3;
}
.pelleBtn:active {
    background-color: #7A2020;
}
.pelleBtn.pelleBtn-active {
    background-color: #f4a21a;
    border-radius: 50%;
    animation: pelle-pulse 0.8s ease-in-out infinite;
}
@keyframes pelle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 162, 26, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(244, 162, 26, 0); }
}
#pelle_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-self: center;
}
#pelle_count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #7A2020;
    color: #f4a21a;
    font-weight: bold;
    font-size: medium;
    justify-content: center;
    border: solid 1px #7A2020;
    width: 13px;
    padding: 5px;
    border-radius: 50%;
    height: 15px;
    display: flex;
    line-height: 13px;
}
/* Léger indicateur sur le plateau entier quand le mode marteau est actif */
#game-board-container.pelle-mode-active {
    box-shadow: 0 0 0 3px #f4a21a;
}
/* Chaque case cassable est marquée individuellement, sans ambiguïté possible */
.cell.pelle-targetable {
    position: relative;
}
.cell.pelle-targetable::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(198, 52, 52, 0.35);
    outline: 2px solid #c63434;
    outline-offset: -2px;
    animation: pelle-target-pulse 0.9s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pelle-target-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

/* Aperçu de la prochaine pièce (jeton à dépenser) */
#next_piece_peek_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
#next_piece_peek {
    width: 70px;
    height: 50px;
    background-color: #fcfeffe3;
    border: solid 1px #268e8f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#next_piece_peek.peek-unavailable {
    opacity: 0.35;
}
#peek_question_mark {
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #268e8f;
}
.peek-preview-piece {
    pointer-events: none;
    transform: scale(0.55);
}
#peek_count {
    position: absolute;
    top: -8px;
    right: calc(50% - 45px);
    background: #7A2020;
    color: #f4a21a;
    font-weight: bold;
    font-size: medium;
    justify-content: center;
    border: solid 1px #7A2020;
    width: 13px;
    padding: 5px;
    border-radius: 50%;
    height: 15px;
    display: flex;
    line-height: 13px;
}

/* Mission hebdomadaire (page profil) */
#weekly_mission_section {
    margin: 15px auto;
    max-width: 320px;
    text-align: center;
    font-family: "Fredoka", sans-serif;
}
#weekly_mission_title {
    color: #066e6f;
    font-weight: 600;
    margin-bottom: 6px;
}
#weekly_mission_bar {
    width: 100%;
    height: 14px;
    background-color: #f3f3f3;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #268e8f;
}
#weekly_mission_bar_fill {
    height: 100%;
    width: 0%;
    background-color: #f4a21a;
    transition: width 0.4s ease-out;
}

/* Écran de choix du mode de jeu */
.select_mode_section {
    text-align: center;
    padding: 20px;
    font-family: "Fredoka", sans-serif;
    color: #fcfeff;
}
.mode_card {
    background-color: #fcfeffe3;
    border: solid 2px #268e8f;
    border-radius: 14px;
    padding: 20px;
    margin: 20px auto;
    max-width: 320px;
    cursor: pointer;
}
.mode_card:active {
    background-color: #f6b26b;
}
.mode_card_title {
    font-size: 22px;
    font-weight: 700;
    color: #066e6f;
    margin-bottom: 8px;
}
.mode_card_desc {
    color: #7A2020;
    font-size: 15px;
}
/* Chrono : minuteur affiché en jeu, en superposition pour ne jamais décaler le reste de la page */
#chrono_timer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c63434;
    color: #fcfeff;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 14px;
    border: solid 2px #fcfeff;
    z-index: 10;
    white-space: nowrap;
}
#chrono_timer.chrono_timer_urgent {
    animation: pelle-pulse 0.6s ease-in-out infinite;
}

/* Onglets de classement Classique / Chrono */
.score_mode_tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.score_tab {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    border: solid 2px #268e8f;
    background-color: transparent;
    color: #fcfeff;
}
.score_tab_active {
    background-color: #f4a21a;
    border-color: #f4a21a;
    color: #7A2020;
}

/* Sélecteur de langue FR/EN dans le header */
.lang_toggle_btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
    font-size: 13px;
    background-color: #f4a21a;
    color: #7A2020;
    border: none;
    border-radius: 14px;
    padding: 4px 10px;
}

/* Pages publiques (GitHub Pages) - petit bandeau simple sans dépendre de l'appli */
.public_page_header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #066e6f;
    border-radius: 0 0 20px 20px;
}
.public_page_header h1 {
    font-size: 20px;
    margin: 0;
}
.public_page_nav {
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
.public_page_nav a {
    color: #f4a21a;
    margin: 0 8px;
}
