.initiative-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.initiative-card h3 {
    margin-top: 0;
}

.initiative-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 10px;
}

.progress-bar {
    background: #f0f0f0;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    background: #2271b1;
    height: 100%;
    transition: width 0.3s;
}

.vote-button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.vote-button:hover {
    background: #135e96;
}

.vote-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-collecting { background: #d1e7dd; color: #0f5132; }
.status-submitted { background: #cfe2ff; color: #084298; }
.status-completed { background: #d1e7dd; color: #0f5132; }
.status-rejected { background: #f8d7da; color: #842029; }
