/* Grunddesign */
p.left, p.right {
    display: table;
    clear: both;
    max-width: 75%;
    margin: 12px 0;
    padding: 12px 18px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

/* Linke Seite: Frosted Glass Look (durchscheinend) */
p.left {
    margin-right: auto;
    background: rgba(255, 255, 255, 0.15); /* Transparentes Weiß */
    backdrop-filter: blur(10px);           /* Glas-Effekt */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px 20px 20px 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Rechte Seite: Akzentfarbe (Petrol/Türkis oder sanftes Gold) */
p.right {
    margin-left: auto;
    /* Ein Verlauf, der gut mit dem Dunkelblau harmoniert */
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%); 
    color: white;
    border-radius: 20px 20px 5px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
