
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .header {
            background: white;
            padding: 15px 20px;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-content {
            flex: 1;
            padding: 30px;
        }

.filter-tabs {
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.filter-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: #6c757d;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6c757d;
    border: 2px solid white;
}


.timeline-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.timeline-content p {
    margin: 0;
    color: #6c757d;
}

.vote-count-card {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
}

.vote-count-card h4 {
    font-size: 2rem;
    margin-bottom: 5px;
}