.wt-panel {
    margin-top: 10px;
    border: 1px solid #dbe5ff;
    border-radius: 10px;
    padding: 8px;
    background: #f7f9ff;
}

.wt-header {
    font-size: 12px;
    font-weight: 700;
    color: #2f3f88;
    margin-bottom: 6px;
}

.wt-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.wt-preset {
    border: 1px solid #c8d6ff;
    background: #fff;
    color: #4256ad;
    border-radius: 999px;
    font-size: 11px;
    padding: 3px 8px;
    cursor: pointer;
}

.wt-messages {
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #e5ebff;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

.wt-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    border-bottom: 1px solid #f0f2fa;
    padding: 4px 0;
}

.wt-msg:last-child {
    border-bottom: 0;
}

.wt-msg-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.wt-msg-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.wt-msg-temp {
    background: #f4f8ff;
    border: 1px solid #d8e5ff;
    border-radius: 10px;
    padding: 6px;
    margin: 4px 0;
}

.wt-dismiss {
    border: 0;
    background: transparent;
    color: #8b93b0;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    padding: 0;
}

.wt-dismiss:hover {
    color: #3d56c9;
}

.wt-msg small {
    color: #8b93b0;
}

.wt-temp-meta {
    color: #6173a9;
    font-size: 10px;
    line-height: 1.25;
    margin-top: 2px;
}

.wt-temp-meta a {
    color: #3d56c9;
    font-weight: 600;
}

.wt-empty {
    font-size: 11px;
    color: #8b93b0;
}

.wt-footer {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.wt-input {
    flex: 1;
    min-width: 0;
    border: 1px solid #c8d6ff;
    border-radius: 8px;
    padding: 6px;
    font-size: 12px;
}

.wt-send {
    border: none;
    border-radius: 8px;
    background: #3d56c9;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}