.btnSave {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.poll {
    margin-top: 30px;
}

.poll h3 {
    margin-bottom: 10px;
}

.poll label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.button-group button {
    width: auto;
    flex: 1;
}

.timeline {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.timeline-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #3498db;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.timeline-item h4 {
    margin: 0 0 10px;
}

.timeline-item small {
    color: #888;
}

.sortable-ghost {
    opacity: 0.4;
    background-color: #dfe6e9;
}