.feedback-bubbles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-bubble {
    position: relative;
    border: 3px solid #000;
    border-radius: 25px;
    padding: 20px 30px;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 6px 6px 0 #000;
    width: 80%;
    color: #000;
}

/* Alternating colours */
.feedback-bubble.left {
    align-self: flex-start;
    background-color: #e6f2ff; /* light blue */
}

.feedback-bubble.right {
    align-self: flex-end;
    background-color: #e6ffe6; /* light green */
}

/* Left bubble tail */
.feedback-bubble.left::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: -25px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 25px solid #e6f2ff;
    
    filter: drop-shadow(-3px 3px 0 #000);
}

/* Right bubble tail */
.feedback-bubble.right::after {
    content: "";
    position: absolute;
    bottom: 25px;
    right: -25px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid #e6ffe6;
    
    filter: drop-shadow(3px 3px 0 #000);
}

.bubble-text {
    margin-bottom: 12px;
    font-weight: bold;
    font-style: italic;
}

.bubble-meta {
    font-size: 15px;
    color: #333;
}

.bubble-date {
    font-size: 13px;
    color: #666;
}
