/* Карточки бота */
.bot-card {
    background: var(--bg-secondary, #2b2b2b);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 4px 0;
    border: 1px solid var(--border-color, #3a3a3a);
    max-width: 100%;
}

.bot-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary, #a0a0a0);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color, #3a3a3a);
}

.bot-card-title {
    font-weight: 600;
    color: var(--text-primary, #e0e0e0);
}

.bot-card-badge {
    margin-left: auto;
    background: var(--primary, #4a6cf7);
    color: #fff;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 18px;
}

.bot-card-body {
    margin: 8px 0;
}

.bot-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary, #a0a0a0);
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid var(--border-color, #3a3a3a);
}

/* Опрос */
.poll-question {
    font-weight: 500;
    margin-bottom: 12px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poll-option {
    position: relative;
    padding: 8px 12px;
    background: var(--bg-hover, #3a3a3a);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    overflow: hidden;
}

.poll-option:hover:not(.voted) {
    background: var(--bg-active, #4a4a4a);
}

.poll-option.voted {
    border: 1px solid var(--primary, #4a6cf7);
}

.poll-option-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary, #4a6cf7);
    opacity: 0.15;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.poll-option-text {
    position: relative;
    z-index: 1;
}

.poll-option-stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary, #a0a0a0);
    margin-top: 2px;
}

.poll-total {
    font-size: 12px;
    color: var(--text-secondary, #a0a0a0);
    margin-top: 8px;
}

/* Задача */
.todo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.todo-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary, #4a6cf7);
}

.todo-text {
    font-size: 14px;
    color: var(--text-primary, #e0e0e0);
    word-break: break-word;
}

.todo-text.done {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Напоминание */
.reminder-text {
    font-size: 14px;
    color: var(--text-primary, #e0e0e0);
    margin-bottom: 4px;
}

.reminder-time {
    font-size: 12px;
    color: var(--text-secondary, #a0a0a0);
}

.reminder-time i {
    margin-right: 4px;
}