.post-it-container {
    position: relative;
    width: 250px;
    height: 250px;
    flex-shrink: 0;
}

.post-it {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #ffd93d;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
}

.post-it:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.post-it[data-note="1"] {
    top: 10px;
    left: 10px;
    transform: rotate(-2deg);
    z-index: 1;
}

.post-it[data-note="2"] {
    top: 20px;
    left: 25px;
    transform: rotate(3deg);
    z-index: 2;
}

.post-it[data-note="3"] {
    top: 30px;
    left: 15px;
    transform: rotate(-1deg);
    z-index: 3;
}

.post-it-content {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.post-it-content p {
    margin: 4px 0;
}
