.no-active-poll {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.no-active-poll p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Vote buttons using your dashboard button styles */
.vote-buttons .btn {
    position: relative;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.vote-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
}

.vote-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}



/* Voting System Specific Styles */
.vote-history-container,
.create-poll-container,
.current-poll-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.active-poll {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.poll-info {
    margin-bottom: 1.5rem;
}

.poll-info h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.poll-start-time {
    color: #6c757d;
    font-size: 0.9rem;
}

.vote-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.vote-form {
    max-width: 500px;
    margin: 0 auto;
}

.results-section {
    padding-top: 1.5rem;
}

.results-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.vote-bar {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.vote-display {
    display: flex;
    width: 100%;
    height: 2.5rem;
}

.aye-bar, .nay-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: white;
    min-width: fit-content;
}

.aye-bar {
    background: #28a745;
}

.nay-bar {
    background: #dc3545;
}

.no-votes {
    text-align: center;
    padding: 0.5rem;
    color: #6c757d;
}

.poll-card {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poll-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.no-active-poll {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.no-active-poll p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Vote buttons using your dashboard button styles */
.vote-buttons .btn {
    position: relative;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.vote-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
}

.vote-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

