.display-sse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: auto;
}

.display-sse-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.display-sse-messages {
    overflow-y: auto;
    max-height: 400px;
    min-height: 100px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.5;
}

.display-sse-message {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.display-sse-message:last-child {
    border-bottom: none;
}
