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

body {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    background-color: #F5F7FA;
    color: #333333;
    line-height: 1.6;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Decorative Patterns from Figma Design */
.decorative-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.decorative-pattern-1 {
    top: 80px;
    right: -30px;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.decorative-pattern-2 {
    top: 400px;
    left: -20px;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite reverse;
}

.decorative-pattern-3 {
    bottom: 300px;
    right: 50px;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.decorative-pattern-capital6 {
    top: 200px;
    right: 100px;
    opacity: 0.6;
    animation: floatRotate 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Ensure content stays above decorative patterns */
.section-header,
.stats-container,
.budget-section,
.charts-container,
.gdp-table-container,
.project-performance-section,
.news-section {
    position: relative;
    z-index: 1;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pattern {
    position: absolute;
    top: 50px;
    right: 100px;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}


/* Section Header */
.section-header {
    background: #007BC3;
    color: white;
    padding: 12px 0;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0 30px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    min-height: 120px;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stat-icon-wrapper {
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-family: 'Sarabun', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #345B74;
    margin: 0 0 8px 0;
}

.stat-card-budget .stat-value {
    color: #504099;
    font-size: 32px;
}

.stat-card-economic .stat-value {
    color: #FF8A00;
    font-size: 32px;
}

.stat-card-projects .stat-value {
    font-size: 32px;
}

.stat-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}

.stat-unit {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    display: inline;
}

/* Agencies Card Special Styling */
.stat-card-agencies {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: visible;
    background: #FFFFFF;
    border: 1px solid #E8ECF0;
    min-height: auto;
}

.agencies-header {
    background: transparent;
    padding: 20px 24px 16px 24px;
    border-bottom: none;
}

.agencies-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #1D2370;
    margin: 0;
    text-align: left;
}

.agencies-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px 24px 20px;
    flex: 1;
    gap: 12px;
}

.agency-item {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 80px;
}

.agency-value {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    color: #161616;
    line-height: 1;
    margin: 0;
}

.agency-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #1D2370;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.agency-divider {
    width: 1px;
    height: 60px;
    background: #E8ECF0;
    margin: 8px 12px 0 12px;
    align-self: stretch;
    flex-shrink: 0;
}

/* Figma Chart Container */
.figma-chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
}

.figma-chart-box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 20px 60px 0 rgba(128, 144, 155, 0.20);
    width: 100%;
    height: 475px;
    position: relative;
}

.chart-main-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 4px 0;
}

.chart-sub-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 300;
    color: #1D2370;
    margin: 0 0 8px 0;
}

.chart-sub-header {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 300;
    color: #999999;
    margin: 0 0 16px 0;
    position: absolute;
    right: 24px;
    top: 24px;
}

.chart-legend-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.legend-square {
    width: 16px;
    height: 16px;
    background: #FFC864;
    border-radius: 4px;
}

.legend-text {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 600;
    color: #1D2370;
}

.gdp-chart-wrapper,
.tfp-chart-wrapper {
    height: 250px;
    position: relative;
}

.tfp-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    font-weight: 400;
    color: #4B4B4B;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Old Charts Container - keep for other sections */
.charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.chart-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 36px 32px 36px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.12);
}

.chart-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 700;
    color: #1D2370;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.chart-subtitle {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #7B8AAB;
    margin: 0 0 28px 0;
    letter-spacing: 0.01em;
}

.line-chart-wrapper,
.bar-chart-wrapper {
    height: 280px;
    position: relative;
    padding: 10px 0;
}

.doughnut-chart-wrapper {
    height: 280px;
    position: relative;
    padding: 10px 0;
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.center-value {
    font-size: 48px;
    font-weight: 700;
    color: #1D2370;
    line-height: 1;
    letter-spacing: -0.02em;
}

.center-label {
    font-size: 16px;
    font-weight: 400;
    color: #7B8AAB;
    margin-top: 4px;
}

/* Budget Chart Section */
.budget-chart-section {
    background: white;
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.budget-chart-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.12);
}

.budget-chart-section .chart-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 700;
    color: #1D2370;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.budget-chart-section .chart-subtitle {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #7B8AAB;
    margin: 0 0 28px 0;
    letter-spacing: 0.01em;
}

.budget-chart-section .bar-chart-wrapper {
    height: 340px;
    padding: 10px 0;
}

/* GDP Growth Table */
.gdp-table-container {
    margin-bottom: 40px;
    overflow-x: auto;
}

.gdp-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gdp-table-header {
    background: #17A481;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 500;
}

.header-left,
.header-right {
    flex: 1;
    text-align: center;
}

.gdp-growth-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
}

.gdp-growth-table thead {
    background: #17A481;
    color: white;
}

.gdp-growth-table th {
    padding: 12px 8px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    vertical-align: middle;
}

.gdp-growth-table th:last-child {
    border-right: none;
}

.gdp-growth-table th.year-col {
    background: #0E6B53;
    font-weight: 600;
}

.gdp-growth-table th.center-header {
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.gdp-growth-table tbody tr {
    background: white;
}

.gdp-growth-table tbody tr.alt-row {
    background: #E8F7F3;
}

.gdp-growth-table td {
    padding: 12px 8px;
    font-size: 14px;
    text-align: center;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    color: #333333;
}

.gdp-growth-table td:last-child {
    border-right: none;
}

.gdp-growth-table tbody tr:last-child td {
    border-bottom: none;
}

.gdp-growth-table td.year-cell {
    background: #0E6B53;
    color: white;
    font-weight: 600;
}

.gdp-growth-table td.data-cell {
    font-weight: 400;
}

.table-footer {
    background: #F5F5F5;
    padding: 12px 24px;
    text-align: right;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 13px;
    color: #666666;
    border-top: 1px solid #E0E0E0;
}

/* Budget Execution Progress Section */
.budget-execution-section {
    margin-bottom: 40px;
}

.budget-header {
    background: #007BC3;
    color: white;
    padding: 16px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.budget-header h2 {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.budget-content-wrapper {
    padding: 0;
    background: transparent;
}

.budget-main-container {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px;
    align-items: flex-start;
}

.budget-left-wrapper {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.budget-left-section {
    display: flex;
    flex-direction: column;
}

.budget-right-wrapper {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.budget-right-section {
    position: relative;
}

.budget-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 20px 0;
}

.budget-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 10px;
}

.budget-header-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.budget-header-unit {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.budget-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.budget-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.budget-value {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.budget-value.purple {
    color: #974EC3;
}


.chart-top-section {
    margin-bottom: 20px;
}

.chart-section-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px 0;
}

.chart-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.chart-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.department-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    color: #333333;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 36px;
}

.department-dropdown:focus {
    border-color: #007BC3;
    box-shadow: 0 0 0 2px rgba(0, 123, 195, 0.1);
}

.budget-chart-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.y-axis-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    color: #999999;
    padding: 10px 0;
    text-align: right;
    min-width: 80px;
}

.budget-chart-container {
    flex: 1;
    position: relative;
    height: 260px;
}

.x-axis-labels {
    display: flex;
    justify-content: space-around;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 13px;
    color: #666666;
    text-align: center;
    margin-top: 10px;
    line-height: 1.3;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #F0F0F0;
}

.chart-legend {
    display: flex;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    color: #666666;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.legend-dot.pink {
    background: #EC4899;
}

.legend-dot.pink-light {
    background: #FBB6CE;
}

.chart-subtitle {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 13px;
    color: #999999;
}

/* Economic Value Added Section */
.economic-value-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1D2370;
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: -0.02em;
}

.economic-bars {
    max-width: 1000px;
    margin: 0 auto 30px;
}

.economic-bar-item {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
}

.economic-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    text-align: left;
}

.economic-bar-wrapper {
    position: relative;
    height: 35px;
    background: #F5F5F5;
    border-radius: 20px;
    overflow: hidden;
}

.economic-bar-fill {
    height: 100%;
    border-radius: 20px;
    transition: width 0.6s ease;
    position: relative;
}

/* Gradient colors based on width - darker for longer bars */
.economic-bar-fill[data-width="100"] {
    background: linear-gradient(90deg, #d4c5db 0%, #875998 100%);
}

.economic-bar-fill[data-width="85"] {
    background: linear-gradient(90deg, #d4c5db 0%, #9b6aa8 85%);
}

.economic-bar-fill[data-width="75"] {
    background: linear-gradient(90deg, #d4c5db 0%, #9b6aa8 75%);
}

.economic-bar-fill[data-width="50"] {
    background: linear-gradient(90deg, #d4c5db 0%, #b08bb8 50%);
}

.economic-bar-fill[data-width="30"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 30%);
}

.economic-bar-fill[data-width="25"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 25%);
}

.economic-bar-fill[data-width="20"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 20%);
}

.economic-bar-fill[data-width="10"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 10%);
}

.economic-bar-fill[data-width="5"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 5%);
}

.economic-bar-fill[data-width="4"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 4%);
}

.economic-bar-fill[data-width="3"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 3%);
}

.economic-bar-fill[data-width="2"] {
    background: linear-gradient(90deg, #d4c5db 0%, #c5a6c8 2%);
}

.economic-value {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    text-align: right;
}


/* Budget Execution Summary Section */
.budget-summary-section {
    margin-bottom: 40px;
}

.budget-summary-header {
    background: #0A97B0;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.budget-summary-header h2 {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.budget-summary-content {
    background: white;
    border-radius: 0 0 10px 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.budget-summary-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
}

.subtitle-left {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.subtitle-right {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.date-info {
    position: absolute;
    right: 0;
    bottom: -30px;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    color: #999999;
}

.budget-progress-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.progress-item {
    text-align: center;
}

.progress-item.overall {
    border-right: 2px solid #E5E5E5;
    padding-right: 30px;
}

.progress-item h4 {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 20px 0;
}

.progress-item.quarter h4 {
    font-size: 16px;
    font-weight: 500;
}

.progress-circle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: #E8F5F5;
}

.progress-ring-fill {
    fill: none;
    stroke: #17C3B2;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-text .percentage {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    color: #17C3B2;
    display: block;
}

.progress-item.overall .percentage {
    font-size: 32px;
}

.progress-info {
    margin-bottom: 10px;
}

.amount,
.budget-value {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.unit,
.budget-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.progress-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E5E5;
}

.target-value {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 4px;
}

.target-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}


/* Department Budget Execution Chart Section */
.department-chart-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.department-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.department-chart-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.department-chart-date {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.department-chart-subtitle {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 30px;
}

.department-chart-wrapper {
    height: 400px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.department-chart-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.department-chart-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.department-chart-legend .legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.department-chart-legend .legend-text {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.department-chart-legend .legend-percentage {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 700;
    color: #17C3B2;
    margin-left: 20px;
}

/* Performance Progress Section */
.performance-section {
    margin-bottom: 40px;
}

.performance-header {
    background: #9F1323;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.performance-header h2 {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.performance-content {
    background: white;
    border-radius: 0 0 10px 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.performance-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.subtitle-text {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.date-text {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    color: #999999;
}

.performance-progress-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.performance-item {
    text-align: center;
}

.performance-item h4 {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 20px 0;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-item.quarter h4 {
    font-size: 18px;
    font-weight: 500;
    color: #F06292;
}

.performance-circle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.performance-circle-wrapper .progress-ring-bg {
    stroke: #FFE4E9;
}

.performance-circle-wrapper .progress-ring-fill {
    stroke: #F06292;
}

.performance-circle-wrapper .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.performance-circle-wrapper .percentage {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    color: #F06292;
    display: block;
}

.performance-item:first-child .percentage {
    font-size: 28px;
}

/* Project Performance by Department Section */
.project-performance-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.project-performance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.project-performance-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.project-performance-legend {
    display: flex;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.project-performance-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-performance-legend .legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.project-performance-legend .legend-color.plan {
    background: #E0E0E0;
}

.project-performance-legend .legend-color.result {
    background: #F06292;
}

.project-performance-legend .legend-text {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.project-performance-date {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.project-performance-content {
    position: relative;
}

.performance-percentage-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 30px;
}

.percentage-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-right: 20px;
    min-width: 60px;
}

.percentage-values {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.percentage-values span {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    text-align: center;
    min-width: 50px;
}

.lollipop-chart-wrapper {
    height: 350px;
    margin: 20px 0;
    padding: 0 20px;
    position: relative;
}

.department-labels {
    text-align: center;
    margin-top: 20px;
}

.department-labels span {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

/* Pill Chart Styles */
.pill-chart-container {
    position: relative;
    margin: 20px 0;
}

.pill-chart-header {
    margin-bottom: 10px;
}

.chart-axis-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
}

.pill-chart-body {
    display: flex;
    gap: 10px;
    position: relative;
    height: 320px;
}

.pill-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    color: #999999;
    padding: 20px 0;
    min-width: 40px;
    text-align: right;
}

.pill-chart-grid {
    display: flex;
    gap: 12px;
    flex: 1;
    align-items: flex-end;
    padding-bottom: 40px;
    background-image: repeating-linear-gradient(
        0deg,
        #F5F5F5,
        #F5F5F5 1px,
        transparent 1px,
        transparent 60px
    );
}

.pill-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    height: 100%;
    justify-content: flex-end;
}

.pill-percentage {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 11px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 5px;
    position: absolute;
    top: -20px;
}

.pill-bar-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pill-bar {
    width: 80%;
    border-radius: 20px 20px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.pill-bar.pink {
    background: linear-gradient(180deg, #F06292 0%, #EC407A 100%);
}

.pill-bar.gray {
    background: #E0E0E0;
    height: 8px !important;
    border-radius: 4px;
}

.pill-bar:hover {
    transform: scaleX(1.05);
}

.pill-label {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin-top: 8px;
    position: absolute;
    bottom: -25px;
    white-space: nowrap;
}

.pill-chart-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
}

/* News Section */
.news-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

/* FIXED NEWS SECTION STYLES */
/* Left Section - List Layout */
.news-left-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.news-list-item {
    display: flex !important;
    gap: 20px !important;
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    height: 140px !important;
}

.news-list-item:hover {
    transform: translateX(4px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

.news-list-item > a {
    display: flex !important;
    gap: 20px !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
}

.news-list-image {
    position: relative !important;
    width: 200px !important;
    height: 140px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.news-list-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.05) !important;
}

.news-list-content {
    flex: 1 !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
}

.news-list-title {
    /* font-family: 'Sarabun', sans-serif !important; */
    font-family: 'Prompt' !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.news-list-excerpt {
    /* font-family: 'Sarabun', sans-serif !important; */
    font-family: 'Prompt' !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Right Section - Image Cards */
.news-right-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.news-image-card {
    position: relative !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    height: 210px !important;
}

.news-image-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

.news-image-card > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
    position: relative !important;
}

.news-image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.news-image-card:hover img {
    transform: scale(1.05) !important;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.news-title {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.see-all-link {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 500;
    color: #FF8A00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #E67A00;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.news-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-featured {
    display: flex;
    flex-direction: column;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-card.event-card {
    grid-column: span 2;
}

.news-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF8A00;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
}

.badge-number {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.badge-month {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}

.badge-date {
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.event-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-badge-large {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.event-info {
    text-align: center;
    color: white;
}

.event-title {
    display: block;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-theme {
    display: block;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 18px;
    font-weight: 600;
    color: #FFB447;
    margin-bottom: 8px;
}

.event-thai {
    display: block;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.speakers {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.speakers img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
}

.news-category {
    display: inline-block;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    font-size: 12px;
    font-weight: 500;
    color: #FF8A00;
    background: rgba(255, 138, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
    white-space: nowrap;
}

/* News Section Responsive Styles */
/* Responsive Styles for Decorative Patterns */
@media (max-width: 768px) {
    .decorative-pattern,
    .hero-pattern {
        display: none;
    }
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-card.event-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 0 16px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-left-section {
        gap: 16px;
    }

    .news-list-item {
        flex-direction: column;
    }

    .news-list-image {
        width: 100%;
        height: 180px;
    }

    .news-list-content {
        padding: 16px;
    }

    .news-list-title {
        font-size: 16px;
    }

    .news-list-excerpt {
        font-size: 13px;
    }

    .news-image-card {
        height: 180px;
    }

    .news-badge {
        top: 16px;
        left: 16px;
        padding: 10px 14px;
    }

    .badge-number {
        font-size: 24px;
    }

    .badge-month,
    .badge-date {
        font-size: 12px;
    }

    .event-logo {
        width: 60px;
        height: 60px;
        top: 16px;
        left: 16px;
    }

    .event-badge-large {
        padding: 20px;
    }

    .event-title {
        font-size: 20px;
    }

    .event-theme {
        font-size: 16px;
    }

    .event-thai {
        font-size: 14px;
    }

    .event-details {
        font-size: 12px;
    }

    .speakers img {
        width: 50px;
        height: 50px;
    }

    .news-category {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .news-section {
        margin-bottom: 40px;
    }

    .see-all-link {
        font-size: 14px;
    }

    .news-list-image {
        height: 160px;
    }

    .news-image-card {
        height: 160px;
    }

    .event-badge-large {
        padding: 16px;
    }

    .event-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .event-theme {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .speakers {
        gap: 12px;
    }

    .speakers img {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    /* Agencies card adjustments for small screens */
    .agencies-content {
        padding: 0 12px 16px 12px;
        gap: 4px;
    }

    .agency-value {
        font-size: 18px;
    }

    .agency-label {
        font-size: 11px;
        line-height: 1.2;
    }

    .agency-divider {
        margin: 0 4px;
        height: 45px;
    }

    .agency-item {
        gap: 4px;
        padding: 0 2px;
    }

    .news-list-content {
        padding: 12px;
    }

    .news-list-title {
        font-size: 14px;
    }

    .news-list-excerpt {
        font-size: 12px;
    }
}


@media (max-width: 1024px) {
    .figma-chart-container,
    .charts-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .figma-chart-box {
        height: auto;
        min-height: 377px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .agency-divider {
        margin: 0 8px;
        height: 50px;
    }

    .stat-card-agencies {
        grid-column: span 2;
    }

    .agencies-content {
        padding: 0 16px 20px 16px;
        gap: 8px;
    }

    .agencies-header {
        padding: 16px 16px 12px 16px;
    }

    .agencies-title {
        font-size: 14px;
    }

    .agency-value {
        font-size: 20px;
    }

    .agency-label {
        font-size: 12px;
        white-space: nowrap;
    }

    .gdp-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .gdp-growth-table {
        min-width: 800px;
    }

    .gdp-table-header {
        font-size: 14px;
        padding: 12px 16px;
    }

    .gdp-growth-table th,
    .gdp-growth-table td {
        font-size: 12px;
        padding: 8px 4px;
    }

    .charts-container,
    .blue-stats-grid,
    .red-stats-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .chart-box,
    .budget-chart-section,
    .monthly-chart-section {
        padding: 24px;
    }

    .budget-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .budget-left-section {
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .budget-header h2 {
        font-size: 18px;
    }

    .budget-content-wrapper {
        padding: 20px;
    }

    .economic-value-section {
        padding: 20px;
    }

    .economic-bar-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .economic-label {
        font-size: 14px;
        text-align: center;
    }

    .economic-value {
        font-size: 16px;
        text-align: center;
    }

    .economic-bar-wrapper {
        height: 30px;
    }


    .budget-summary-section {
        margin-bottom: 30px;
    }

    .budget-summary-header h2 {
        font-size: 20px;
    }

    .budget-summary-content {
        padding: 20px;
    }

    .budget-summary-subtitle {
        flex-direction: column;
        gap: 10px;
    }

    .subtitle-left {
        font-size: 16px;
    }

    .subtitle-right {
        font-size: 14px;
        text-align: center;
    }

    .date-info {
        position: static;
        margin-top: 10px;
        text-align: center;
    }

    .budget-progress-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .progress-item.overall {
        border-right: none;
        border-bottom: 2px solid #E5E5E5;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .progress-circle-wrapper svg {
        width: 120px;
        height: 120px;
    }

    .progress-item.overall svg {
        width: 140px;
        height: 140px;
    }

    .progress-text .percentage {
        font-size: 20px;
    }

    .progress-item.overall .percentage {
        font-size: 28px;
    }

    .department-chart-section {
        padding: 20px;
    }

    .department-chart-header {
        flex-direction: column;
        gap: 10px;
    }

    .department-chart-title {
        font-size: 18px;
        text-align: center;
    }

    .department-chart-date {
        font-size: 12px;
    }

    .department-chart-wrapper {
        height: 300px;
    }

    .performance-section {
        margin-bottom: 30px;
    }

    .performance-header h2 {
        font-size: 20px;
    }

    .performance-content {
        padding: 20px;
    }

    .performance-subtitle {
        flex-direction: column;
        gap: 10px;
    }

    .subtitle-text {
        font-size: 16px;
        text-align: center;
    }

    .date-text {
        font-size: 12px;
    }

    .performance-progress-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .performance-item h4 {
        font-size: 16px;
        min-height: auto;
    }

    .performance-circle-wrapper svg {
        width: 120px;
        height: 120px;
    }

    .performance-item:first-child svg {
        width: 140px;
        height: 140px;
    }

    .performance-circle-wrapper .percentage {
        font-size: 20px;
    }

    .performance-item:first-child .percentage {
        font-size: 24px;
    }

    .project-performance-section {
        padding: 20px;
    }

    .project-performance-header {
        flex-direction: column;
        gap: 15px;
    }

    .project-performance-title {
        font-size: 18px;
        text-align: center;
    }

    .project-performance-legend {
        position: static;
        transform: none;
    }

    .project-performance-date {
        font-size: 12px;
    }

    .performance-percentage-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .percentage-values {
        min-width: 800px;
    }

    .lollipop-chart-wrapper {
        height: 300px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .chart-title {
        font-size: 18px;
    }

    .line-chart-wrapper,
    .bar-chart-wrapper,
    .doughnut-chart-wrapper {
        height: 240px;
    }

    .center-value {
        font-size: 36px;
    }

    .center-label {
        font-size: 14px;
    }

    @media (max-width: 576px) {
        .stats-container {
            grid-template-columns: 1fr;
        }
    }

}



/* GDP/TFP Table Styles - Updated to match image */
.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow-x: auto;
}

.gdp-tfp-table {
    width: 100%;
    border-collapse: collapse;
    /* font-family: 'Sarabun', sans-serif; */
    font-family: 'Prompt' !important;
    background: white;
}

/* Header Styles */
.gdp-tfp-table thead tr:first-child {
    background: linear-gradient(135deg, #142167 0%, #32408c 100%);
}

.gdp-tfp-table thead tr:last-child {
    background: linear-gradient(135deg, #aeca8d 0%, #b9e684 100%);
}

.year-header,
.main-header {
    padding: 16px 12px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.4;
    vertical-align: middle;
}

.sub-header {
    padding: 12px 8px;
    font-weight: 500;
    font-size: 13px;
    color: #23327b;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    vertical-align: middle;
    line-height: 1.3;
}

.year-header {
    background: linear-gradient(135deg, #4CAF50 0%, #47c44c 100%);
    min-width: 100px;
}

/* Body Styles */
.gdp-tfp-table tbody tr.row-odd {
    background: #effcf2;
}

.gdp-tfp-table tbody tr.row-even {
    background: white;
}

.gdp-tfp-table tbody tr:hover {
    background: #d4edda;
    transition: background 0.3s ease;
}

.year-cell {
    /* background: #2c5282 !important;
    color: white; */
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 14px 12px;
    border-right: 1px solid #e0e0e0;
}

.data-cell {
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.data-cell:hover {
    background: #f8f9fa;
}

/* Special styling for dash values */
.data-cell:contains("-") {
    color: #6c757d;
    font-style: italic;
}

/* Footer Styles */
.gdp-tfp-table tfoot {
    background: #f8f9fa;
}

.footer-row {
    border-top: 2px solid #4a90e2;
}

.footer-text {
    padding: 16px 20px;
    font-size: 14px;
    color: #999999;
    text-align: right;
}

/* Remove borders for last elements */
.gdp-tfp-table th:last-child,
.gdp-tfp-table td:last-child {
    border-right: none;
}

.gdp-tfp-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-container {
        margin: 0 -10px 40px -10px;
        border-radius: 0;
    }

    .gdp-tfp-table {
        min-width: 800px;
    }

    .year-header,
    .main-header,
    .sub-header {
        padding: 12px 8px;
        font-size: 12px;
        line-height: 1.2;
    }

    .year-cell,
    .data-cell {
        padding: 10px 6px;
        font-size: 12px;
    }

    .footer-text {
        padding: 12px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gdp-tfp-table {
        min-width: 700px;
    }

    .year-header,
    .main-header,
    .sub-header {
        padding: 8px 4px;
        font-size: 10px;
    }

    .year-cell,
    .data-cell {
        padding: 8px 4px;
        font-size: 11px;
    }
}

/* Animation Effects */
@keyframes tableLoadIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gdp-tfp-table {
    animation: tableLoadIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .table-container {
        box-shadow: none;
        border: 1px solid #000;
    }

    .gdp-tfp-table {
        color-adjust: exact;
    }

    .year-header,
    .main-header,
    .sub-header,
    .year-cell {
        background: #4a90e2 !important;
        color: white !important;
    }
}


/* Hero Banner Slider Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #c4c4c4 0%, #e4e4e4 100%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Dots Indicator */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Hero Pattern - Keep existing */
.hero-pattern {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 250px;
    }

    .hero-nav {
        width: 35px;
        height: 35px;
    }

    .hero-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* Animation Effects */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.hero-slide.slide-in {
    animation: slideIn 0.8s ease-in-out;
}

.hero-slide.slide-out {
    animation: slideOut 0.8s ease-in-out;
}

/* Autoplay Progress Bar (Optional) */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    z-index: 10;
    transition: width 5s linear;
}

.hero-progress.active {
    width: 100%;
}

/* Chart Note Styling */
.chart-note {
    /* margin-top: 16px; */
    padding: 12px 16px;
    /* background: #F8F9FA;
    border-left: 3px solid #6C757D; */
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #495057;
}

.chart-note .note-label {
    font-weight: 600;
    color: #31525B;
    margin-right: 6px;
}

.chart-note .note-text {
    color: #6C757D;
}

/* Responsive */
@media (max-width: 768px) {
    .chart-note {
        font-size: 12px;
        padding: 10px 12px;
    }
}