/* WhatsApp Sentiment Analysis specific styles */

.back-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.results-container {
    margin-top: 2rem;
}

.results-container img {
    max-width: 100%;
    margin-bottom: 1rem;
}

/* Chat accordion styles */
.chat-accordion {
    margin-top: 2em;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
}

.chat-accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1em;
    font-weight: bold;
    font-size: 1.3em;
}

.chat-accordion-content {
    display: none;
    padding: 1.5em 1em 1em 2.5em;
}

/* Terminal and log containers */
#wa-terminal-container,
#analysis-log-container {
    margin-bottom: 2em;
}

/* Terminal and log output styles */
#terminal-output,
#analysis-log {
    background: #222;
    color: #eee;
    padding: 1em;
    border-radius: 8px;
    min-height: 200px;
    max-height: 1200px;
    min-width: 350px;
    width: 100%;
    resize: both;
    overflow: auto;
    font-size: 0.95em;
    font-family: monospace;
    white-space: pre-wrap;
}