body {
    background-color: #f8fafc;
}

/* .highlight {
    background: #f3f4f6;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 16px 18px;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: auto;
} */

/* .highlight pre {
    margin: 0;
    background: transparent;
    white-space: pre;
} */
   
button {
    cursor: pointer
}

.speech-bubble {
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 1rem;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for the speech bubble */
.speech-bubble:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

[x-cloak] { display: none !important; }