/* Fond sombre couvrant tout l'écran */
#postit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /**background: rgba(0, 0, 0, 0.6);**/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Le Post-it */
#postit-container {
	/**mask:  url('/naiv/assets/images/postit.webp') no-repeat center/cover;**/
    background: url('/naiv/assets/images/postit.webp') no-repeat center/cover;
    width: 320px;
    height: 320px;
    padding: 50px 30px 30px 30px;
    position: relative;
    filter: drop-shadow(0px 10px 1px rgba(0, 0, 0, .4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-1deg); /* Petit effet naturel */
}

/* Texte à l'intérieur */
#postit-container p {
    font-family: naivcursed;
    font-size: 1.6rem;
    color: #222;
    line-height: 1.4;
    margin: 0;
}

/* Croix de fermeture */
#postit-close {
    position: absolute;
	top: 60px;
	right: 30px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: transform 0.2s;
}

#postit-close:hover {
    transform: scale(1.2);
}