/* @budding: 线下剧情模式样式 */
.offline-message-area {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.offline-block {
    background: var(--white-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    transition: background-color 0.2s;
    cursor: pointer;
}

.offline-block:active {
    background: #f9f9f9;
}

.offline-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.offline-block-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.offline-block-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
}

.offline-block-content {
    color: var(--text-color);
    line-height: 1.7;
    white-space: pre-wrap;
    font-size: 15px;
}
