.question-period-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation tabs styling */
.qp-navigation {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.qp-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Base styles for all sections */
.qp-summary, .qp-party-section {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #000;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Section headers */
.qp-summary h2, .qp-party-section h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Indicator dots */
.section-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
    transition: background-color 0.3s ease;
}

/* Active state for indicators */
.section-indicator.active {
    background-color: #FFD700; /* Yellow */
}

/* Text content */
.qp-summary p, .qp-party-section p {
    margin-left: 30px; /* Align with header text */
}

/* Party-specific styling */
.qp-cpc {
    background-color: #002395;
    color: white;
}

.qp-bq {
    background-color: #33B2CC;
    color: white;
}

/* No content styling */
.qp-no-content {
    font-style: italic;
    color: #e7e7e7;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px dashed #ccc;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .question-period-container {
        padding: 10px;
    }
    
    .qp-summary, .qp-party-section {
        padding: 15px;
    }
}

/* Content sections */
.qp-content-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px; /* Adjust based on your content */
}

.qp-section {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    visibility: hidden;
}

.qp-section.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* Typography */
.qp-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.qp-section p {
    font-size: 1.2em;
    line-height: 1.6;
} 