/* ========== Parliament Styles ========== */

/* Dashboard Actions Grid - Add Parliament Button */
.dashboard-action-card--parliament {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(118, 75, 162, 0.3);
    color: white !important;
}

.dashboard-action-card--parliament:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(118, 75, 162, 0.4);
    border-color: rgba(118, 75, 162, 0.6);
}

.dashboard-action-card--parliament .dashboard-action-label,
.dashboard-action-card--parliament .dashboard-action-icon {
    color: white !important;
}

/* Parliament Voting Interface */
.parliament-screen {
    background: #1a202c;
    /* Dark screen background */
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 4px solid #2d3748;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parliament-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 4px);
    pointer-events: none;
}

.parliament-topic {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parliament-timer {
    font-family: var(--font-mono);
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-soft);
    margin-bottom: 30px;
}

.parliament-voting-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-parliament-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    /* Circle buttons */
    border: 4px solid transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.btn-parliament-vote:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-parliament-vote:active {
    transform: scale(0.95);
}

.btn-parliament-vote--for {
    background: linear-gradient(135deg, #48c6ef 0%, #6f86d6 100%);
    /* Blueish friendly */
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-parliament-vote--for:hover {
    box-shadow: 0 0 15px #48c6ef;
}

.btn-parliament-vote--against {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-parliament-vote--against:hover {
    box-shadow: 0 0 15px #ff416c;
}

.btn-parliament-vote--abstain {
    background: linear-gradient(135deg, #8e9eab 0%, #eef2f3 100%);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-parliament-vote--abstain:hover {
    box-shadow: 0 0 15px #eef2f3;
}

/* Result Bars */
.parliament-results-bar {
    display: flex;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.result-segment {
    height: 100%;
    transition: width 0.5s ease;
}

.result-segment--for {
    background: #48c6ef;
}

.result-segment--against {
    background: #ff416c;
}

.result-segment--abstain {
    background: #8e9eab;
}