/* /Features/Dashboard/DashboardPage.razor.rz.scp.css */
.dashboard-container[b-tc9v4thvgl] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Titillium Web', sans-serif;
    background-color: #f9f9fc;
    min-height: 100vh;
}

.dashboard-header[b-tc9v4thvgl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.title-section h1[b-tc9v4thvgl] {
    color: #282885;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.subtitle[b-tc9v4thvgl] {
    color: #5a5a7a;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.subtitle[b-tc9v4thvgl]:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #1dc1c3;
    margin-right: 10px;
    border-radius: 2px;
}

.action-buttons[b-tc9v4thvgl] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.template-btn[b-tc9v4thvgl] {
    background-color: #ffffff;
    color: #282885;
    border: 1px solid #e8e8ef;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.template-btn:hover[b-tc9v4thvgl] {
    border-color: #dac576;
    box-shadow: 0 4px 12px rgba(218, 197, 118, 0.2);
    transform: translateY(-1px);
}

.create-btn[b-tc9v4thvgl] {
    background-color: #282885;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 40, 133, 0.2);
    transition: all 0.3s ease;
}

.create-btn:hover[b-tc9v4thvgl] {
    background-color: #1dc1c3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 193, 195, 0.3);
}

.create-btn i[b-tc9v4thvgl] {
    margin-right: 8px;
}

.dashboard-stats[b-tc9v4thvgl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card[b-tc9v4thvgl] {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover[b-tc9v4thvgl] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stat-card .stat-title[b-tc9v4thvgl] {
    color: #5a5a7a;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.stat-card .stat-value[b-tc9v4thvgl] {
    color: #282885;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.stat-card .stat-value.high[b-tc9v4thvgl] {
    color: #e74c3c;
}

.stat-card .stat-value.medium[b-tc9v4thvgl] {
    color: #f39c12;
}

.stat-card .stat-value.low[b-tc9v4thvgl] {
    color: #27ae60;
}

.stat-card .stat-value i[b-tc9v4thvgl] {
    font-size: 1.4rem;
    margin-right: 10px;
    opacity: 0.8;
}

.stat-card .stat-trend[b-tc9v4thvgl] {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.stat-card .trend-up[b-tc9v4thvgl] {
    color: #27ae60;
}

.stat-card .trend-down[b-tc9v4thvgl] {
    color: #e74c3c;
}

.view-options[b-tc9v4thvgl] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
    padding: 0 5px;
}

.view-toggles[b-tc9v4thvgl] {
    display: flex;
    background-color: #f1f1f6;
    border-radius: 12px;
    padding: 5px;
}

.view-toggle[b-tc9v4thvgl] {
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #5a5a7a;
}

.view-toggle.active[b-tc9v4thvgl] {
    background-color: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    color: #282885;
}

.view-toggle i[b-tc9v4thvgl] {
    font-size: 1.1rem;
    margin-right: 8px;
}

.view-toggle.active i[b-tc9v4thvgl] {
    color: #1dc1c3;
}

.filter-options[b-tc9v4thvgl] {
    display: flex;
    gap: 12px;
}

.filter-btn[b-tc9v4thvgl] {
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.clear[b-tc9v4thvgl] {
    background-color: #ffffff;
    color: #5a5a7a;
    border: 1px solid #e8e8ef;
}

.filter-btn.clear:hover[b-tc9v4thvgl] {
    background-color: #f9f9f9;
    border-color: #d0d0d0;
}

.filter-btn.active[b-tc9v4thvgl] {
    background-color: #282885;
    color: white;
    border: none;
    position: relative;
}

.filter-btn.active:hover[b-tc9v4thvgl] {
    background-color: #222270;
}

.filter-count[b-tc9v4thvgl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #1dc1c3;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-left: 6px;
}

/* Card Grid Layout */
.hazard-cards-container[b-tc9v4thvgl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hazard-card[b-tc9v4thvgl] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hazard-card:hover[b-tc9v4thvgl] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hazard-card-header[b-tc9v4thvgl] {
    padding: 20px;
    border-bottom: 1px solid #f0f0f5;
    position: relative;
}

.hazard-card-header[b-tc9v4thvgl]:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.hazard-card.high .hazard-card-header[b-tc9v4thvgl]:before {
    background-color: #e74c3c;
}

.hazard-card.medium .hazard-card-header[b-tc9v4thvgl]:before {
    background-color: #f39c12;
}

.hazard-card.low .hazard-card-header[b-tc9v4thvgl]:before {
    background-color: #27ae60;
}

.hazard-name[b-tc9v4thvgl] {
    color: #282885;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.risk-level[b-tc9v4thvgl] {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.risk-level .dot[b-tc9v4thvgl] {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.risk-level.high[b-tc9v4thvgl] {
    background-color: rgba(231, 76, 60, 0.15);
    color: #d13c2e;
}

.risk-level.high .dot[b-tc9v4thvgl] {
    background-color: #e74c3c;
}

.risk-level.medium[b-tc9v4thvgl] {
    background-color: rgba(243, 156, 18, 0.15);
    color: #c87c08;
}

.risk-level.medium .dot[b-tc9v4thvgl] {
    background-color: #f39c12;
}

.risk-level.very-low[b-tc9v4thvgl], .risk-level.low[b-tc9v4thvgl] {
    background-color: rgba(39, 174, 96, 0.15);
    color: #1d8d4e;
}

.risk-level.very-low .dot[b-tc9v4thvgl], .risk-level.low .dot[b-tc9v4thvgl] {
    background-color: #27ae60;
}

.hazard-card-body[b-tc9v4thvgl] {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hazard-info-item[b-tc9v4thvgl] {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.hazard-info-item:last-child[b-tc9v4thvgl] {
    margin-bottom: 0;
}

.hazard-info-label[b-tc9v4thvgl] {
    color: #717188;
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 500;
    flex: 0 0 90px;
}

.hazard-info-value[b-tc9v4thvgl] {
    color: #333;
    font-weight: 500;
    flex: 1;
}

.owner-name[b-tc9v4thvgl] {
    color: #282885;
    font-weight: 600;
}

.status-tag[b-tc9v4thvgl] {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-tag i[b-tc9v4thvgl] {
    margin-right: 5px;
}

.status-tag.open[b-tc9v4thvgl] {
    background-color: rgba(29, 193, 195, 0.15);
    color: #00a6a8;
}

.status-tag.reviewing[b-tc9v4thvgl] {
    background-color: rgba(90, 90, 207, 0.15);
    color: #5a5acf;
}

.status-tag.required[b-tc9v4thvgl] {
    background-color: rgba(231, 76, 60, 0.15);
    color: #d13c2e;
}

.hazard-card-footer[b-tc9v4thvgl] {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-review[b-tc9v4thvgl] {
    color: #717188;
    font-size: 0.85rem;
}

.view-btn[b-tc9v4thvgl] {
    background-color: transparent;
    color: #282885;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover[b-tc9v4thvgl] {
    background-color: #f6f4e7;
    border-color: #dac576;
    color: #282885;
}

/* List View Styling */
.hazard-list-container[b-tc9v4thvgl] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.list-header[b-tc9v4thvgl] {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 1fr;
    padding: 15px 20px;
    background-color: #f5f5fa;
    border-bottom: 1px solid #e8e8ef;
}

.list-header-item[b-tc9v4thvgl] {
    color: #282885;
    font-weight: 600;
    font-size: 0.9rem;
}

.hazard-list-item[b-tc9v4thvgl] {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #f0f0f5;
    align-items: center;
    transition: all 0.2s ease;
}

.hazard-list-item:hover[b-tc9v4thvgl] {
    background-color: #f9f9fc;
}

.hazard-list-item:last-child[b-tc9v4thvgl] {
    border-bottom: none;
}

.list-actions[b-tc9v4thvgl] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.action-btn[b-tc9v4thvgl] {
    background-color: transparent;
    color: #282885;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.action-btn:hover[b-tc9v4thvgl] {
    background-color: #f0f0f5;
}

/* Pagination and footer */
.dashboard-footer[b-tc9v4thvgl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.total-count[b-tc9v4thvgl] {
    color: #5a5a7a;
    font-weight: 500;
}

.create-hazard-btn[b-tc9v4thvgl] {
    background-color: #282885;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.create-hazard-btn:hover[b-tc9v4thvgl] {
    background-color: #1dc1c3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 193, 195, 0.3);
}

.create-hazard-btn i[b-tc9v4thvgl] {
    margin-right: 8px;
}

.pagination[b-tc9v4thvgl] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-btn[b-tc9v4thvgl] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5fa;
    color: #5a5a7a;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
}

.page-btn:hover[b-tc9v4thvgl] {
    background-color: #e8e8ef;
}

.page-btn.active[b-tc9v4thvgl] {
    background-color: #282885;
    color: white;
}

.page-btn.prev[b-tc9v4thvgl], .page-btn.next[b-tc9v4thvgl] {
    background-color: white;
    border: 1px solid #e8e8ef;
}

/* Empty state */
.empty-state[b-tc9v4thvgl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-state-icon[b-tc9v4thvgl] {
    font-size: 3rem;
    color: #e8e8ef;
    margin-bottom: 20px;
}

.empty-state-title[b-tc9v4thvgl] {
    color: #282885;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-state-text[b-tc9v4thvgl] {
    color: #5a5a7a;
    max-width: 400px;
    margin-bottom: 30px;
}

/* Grid mode - hidden when using card view */
.grid-view-container[b-tc9v4thvgl] {
    display: none;
}

.grid-view-container.active[b-tc9v4thvgl] {
    display: block;
}

/* Universal hidden class */
.hidden[b-tc9v4thvgl] {
    display: none !important;
}

/* Card view - hidden when using grid view */
.card-view-container[b-tc9v4thvgl] {
    display: block;
}

.card-view-container.hidden[b-tc9v4thvgl] {
    display: none;
}

/* Charts view */
.charts-view[b-tc9v4thvgl] {
    display: block;
}

/* List view */
.list-view-container[b-tc9v4thvgl] {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hazard-list-item[b-tc9v4thvgl], .list-header[b-tc9v4thvgl] {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .hazard-list-item .hazard-info-controls[b-tc9v4thvgl] {
        display: none;
    }
}

@media (max-width: 768px) {
    .dashboard-header[b-tc9v4thvgl] {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-buttons[b-tc9v4thvgl] {
        width: 100%;
    }

    .template-btn[b-tc9v4thvgl], .create-btn[b-tc9v4thvgl] {
        flex: 1;
    }

    .view-options[b-tc9v4thvgl] {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .filter-options[b-tc9v4thvgl] {
        width: 100%;
    }

    .filter-btn[b-tc9v4thvgl] {
        flex: 1;
    }

    .hazard-list-item[b-tc9v4thvgl], .list-header[b-tc9v4thvgl] {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .hazard-list-item .hazard-info-owner[b-tc9v4thvgl] {
        display: none;
    }

    .dashboard-footer[b-tc9v4thvgl] {
        flex-direction: column;
        gap: 20px;
    }

    .pagination[b-tc9v4thvgl] {
        order: 2;
    }

    .create-hazard[b-tc9v4thvgl] {
        width: 100%;
        order: 1;
    }

    .create-hazard-btn[b-tc9v4thvgl] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dashboard-container[b-tc9v4thvgl] {
        padding: 20px 15px;
    }

    .hazard-cards-container[b-tc9v4thvgl] {
        grid-template-columns: 1fr;
    }

    .hazard-list-item[b-tc9v4thvgl], .list-header[b-tc9v4thvgl] {
        grid-template-columns: 2fr 1fr;
    }

    .hazard-list-item .hazard-info-status[b-tc9v4thvgl] {
        display: none;
    }
}

/* Analytics Tabs Section */
.analytics-tabs-section[b-tc9v4thvgl] {
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
}

.analytics-tabs .e-tab-header[b-tc9v4thvgl] {
    background-color: transparent;
    border-bottom: 2px solid #e8e8ef;
}

.analytics-tabs .e-tab-header .e-toolbar-item.e-active[b-tc9v4thvgl] {
    background-color: transparent;
}

.analytics-tabs .e-tab-header .e-toolbar-item.e-active .e-tab-wrap[b-tc9v4thvgl] {
    color: #282885;
}

.analytics-tabs .e-tab-header .e-toolbar-item.e-active[b-tc9v4thvgl]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #282885;
}

.analytics-tabs .e-content[b-tc9v4thvgl] {
    padding: 30px 0;
}

/* Charts Container */
.charts-container[b-tc9v4thvgl] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chart-row[b-tc9v4thvgl] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.chart-card[b-tc9v4thvgl] {
    background-color: #f9f9fc;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 350px;
}

.chart-card h3[b-tc9v4thvgl] {
    color: #282885;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.heatmap-card[b-tc9v4thvgl] {
    flex: 1.5;
}

.gauge-card[b-tc9v4thvgl] {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-legend[b-tc9v4thvgl] {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.legend-item[b-tc9v4thvgl] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a5a7a;
    font-size: 0.9rem;
}

.legend-item .dot[b-tc9v4thvgl] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item .dot.low[b-tc9v4thvgl] {
    background-color: #22c55e;
}

.legend-item .dot.moderate[b-tc9v4thvgl] {
    background-color: #eab308;
}

.legend-item .dot.high[b-tc9v4thvgl] {
    background-color: #ef4444;
}

.trend-card[b-tc9v4thvgl] {
    width: 100%;
}

/* Recommendations Container */
.recommendations-container[b-tc9v4thvgl] {
    padding: 20px 0;
}

.priority-flags[b-tc9v4thvgl] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flag-card[b-tc9v4thvgl] {
    background-color: #f9f9fc;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid;
}

.flag-card.high-priority[b-tc9v4thvgl] {
    border-left-color: #ef4444;
}

.flag-card.medium-priority[b-tc9v4thvgl] {
    border-left-color: #eab308;
}

.flag-header[b-tc9v4thvgl] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.flag-header i[b-tc9v4thvgl] {
    font-size: 1.5rem;
}

.flag-card.high-priority .flag-header i[b-tc9v4thvgl] {
    color: #ef4444;
}

.flag-card.medium-priority .flag-header i[b-tc9v4thvgl] {
    color: #eab308;
}

.flag-header h4[b-tc9v4thvgl] {
    color: #282885;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.flag-list[b-tc9v4thvgl] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flag-list li[b-tc9v4thvgl] {
    padding: 15px 0;
    border-bottom: 1px solid #e8e8ef;
}

.flag-list li:last-child[b-tc9v4thvgl] {
    border-bottom: none;
}

.flag-list strong[b-tc9v4thvgl] {
    color: #282885;
    display: block;
    margin-bottom: 8px;
}

.flag-list p[b-tc9v4thvgl] {
    color: #5a5a7a;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.action-buttons[b-tc9v4thvgl] {
    display: flex;
    gap: 10px;
}

.btn-action[b-tc9v4thvgl], .btn-secondary[b-tc9v4thvgl] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action[b-tc9v4thvgl] {
    background-color: #282885;
    color: white;
}

.btn-action:hover[b-tc9v4thvgl] {
    background-color: #1dc1c3;
}

.btn-secondary[b-tc9v4thvgl] {
    background-color: transparent;
    color: #282885;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover[b-tc9v4thvgl] {
    background-color: #f6f4e7;
    border-color: #dac576;
}

/* Hazard List Tab Content */
.hazard-list-tab-content[b-tc9v4thvgl] {
    padding-top: 20px;
}

/* Responsive Charts */
@media (max-width: 1024px) {
    .chart-row[b-tc9v4thvgl] {
        flex-direction: column;
    }
    
    .chart-card[b-tc9v4thvgl] {
        min-width: 100%;
    }
    
    .gauge-card[b-tc9v4thvgl] {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .analytics-tabs-section[b-tc9v4thvgl] {
        padding: 15px;
    }
    
    .chart-card[b-tc9v4thvgl] {
        padding: 20px;
    }
    
    .action-buttons[b-tc9v4thvgl] {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-action[b-tc9v4thvgl], .btn-secondary[b-tc9v4thvgl] {
        width: 100%;
    }
}
/* /Features/Hazards/JobDemandPage.razor.rz.scp.css */
.content-page[b-8i5xsh36v3] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9ff;
    font-family: 'Titillium Web', sans-serif;
}

.content-header[b-8i5xsh36v3] {
    background: linear-gradient(135deg, #f6f4e7 0%, #ffffff 100%);
    color: #282885;
    padding: 2.5rem 2rem;
    position: relative;
    border-radius: 12px;
    margin: 20px 20px 0 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.content-header h1[b-8i5xsh36v3] {
    margin: 0;
    font-weight: 600;
    font-size: 2.4rem;
    color: #282885;
}

.back-button[b-8i5xsh36v3] {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #282885;
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 40, 133, 0.2);
}

.back-button:hover[b-8i5xsh36v3] {
    background-color: #1dc1c3;
    transform: translateY(-50%) translateX(-2px);
    box-shadow: 0 6px 15px rgba(29, 193, 195, 0.3);
}

.content-container[b-8i5xsh36v3] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    width: 100%;
}

.content-section[b-8i5xsh36v3] {
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.content-section h2[b-8i5xsh36v3] {
    color: #282885;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
    padding-bottom: 10px;
    position: relative;
}

.content-section h2[b-8i5xsh36v3]:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #dac576;
    border-radius: 2px;
}

.content-section p[b-8i5xsh36v3] {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-card[b-8i5xsh36v3] {
    display: flex;
    background-color: #f6f4e7;
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover[b-8i5xsh36v3] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.info-icon[b-8i5xsh36v3] {
    background-color: #dac576;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon span[b-8i5xsh36v3] {
    color: white;
    font-size: 1.5rem;
}

.info-content p[b-8i5xsh36v3] {
    margin: 0;
    color: #282885;
    font-weight: 500;
}

.examples-grid[b-8i5xsh36v3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.example-item[b-8i5xsh36v3] {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem;
    background-color: #f9f9ff;
    border-radius: 10px;
    border-left: 4px solid #1dc1c3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.example-item:hover[b-8i5xsh36v3] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.example-icon[b-8i5xsh36v3] {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(29, 193, 195, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.example-icon span[b-8i5xsh36v3] {
    color: #1dc1c3;
    font-size: 1.5rem;
}

.example-content h3[b-8i5xsh36v3] {
    margin: 0 0 0.5rem 0;
    color: #282885;
    font-size: 1.2rem;
    font-weight: 600;
}

.example-content p[b-8i5xsh36v3] {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.strategies-container[b-8i5xsh36v3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.strategy-card[b-8i5xsh36v3] {
    background-color: #f9f9ff;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-card:hover[b-8i5xsh36v3] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.strategy-card h3[b-8i5xsh36v3] {
    color: #282885;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f6f4e7;
    padding-bottom: 0.5rem;
}

.strategy-card ul[b-8i5xsh36v3] {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.strategy-card li[b-8i5xsh36v3] {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.5;
}

.resources-grid[b-8i5xsh36v3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.resource-card[b-8i5xsh36v3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid #f6f4e7;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: #282885;
    transition: all 0.3s ease;
    gap: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.resource-card:hover[b-8i5xsh36v3] {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #dac576;
}

.resource-card span.oi[b-8i5xsh36v3] {
    font-size: 1.8rem;
    color: #1dc1c3;
}

.content-footer[b-8i5xsh36v3] {
    background-color: #282885;
    color: white;
    padding: 1.5rem;
    margin-top: auto;
}

.footer-content[b-8i5xsh36v3] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright[b-8i5xsh36v3] {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links[b-8i5xsh36v3] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-8i5xsh36v3] {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover[b-8i5xsh36v3] {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-header[b-8i5xsh36v3] {
        padding: 2rem 1rem;
        margin: 15px 15px 0 15px;
    }

    .content-header h1[b-8i5xsh36v3] {
        font-size: 2rem;
        padding-top: 2rem;
    }

    .back-button[b-8i5xsh36v3] {
        top: 1rem;
        transform: none;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .content-container[b-8i5xsh36v3] {
        padding: 1.5rem 1rem;
    }

    .content-section[b-8i5xsh36v3] {
        padding: 1.5rem;
    }

    .examples-grid[b-8i5xsh36v3], .strategies-container[b-8i5xsh36v3] {
        grid-template-columns: 1fr;
    }

    .resources-grid[b-8i5xsh36v3] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .example-item[b-8i5xsh36v3] {
        padding: 1rem;
    }

    .info-icon[b-8i5xsh36v3], .example-icon[b-8i5xsh36v3] {
        width: 50px;
        height: 50px;
    }

    .example-content h3[b-8i5xsh36v3] {
        font-size: 1.1rem;
    }

    .footer-links[b-8i5xsh36v3] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
/* /Features/Hazards/PsychosocialHazardsPage.razor.rz.scp.css */
.hazards-container[b-dvkhqsulo4] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Titillium Web', sans-serif;
}

.hazards-header[b-dvkhqsulo4] {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f6f4e7 0%, #ffffff 100%);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hazards-header h1[b-dvkhqsulo4] {
    color: #282885;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle[b-dvkhqsulo4] {
    color: #1dc1c3;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.content-card[b-dvkhqsulo4] {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.hazards-grid[b-dvkhqsulo4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.hazard-card[b-dvkhqsulo4] {
    background-color: #f9f9ff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.hazard-card:hover[b-dvkhqsulo4] {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(218, 197, 118, 0.15);
    background-color: #ffffff;
    border-color: #dac576;
}

.icon-container[b-dvkhqsulo4] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f6f4e7;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.hazard-card:hover .icon-container[b-dvkhqsulo4] {
    background-color: #282885;
}

.icon-container span[b-dvkhqsulo4] {
    font-size: 24px;
    color: #1dc1c3;
}

.hazard-card:hover .icon-container span[b-dvkhqsulo4] {
    color: white;
}

.hazard-title[b-dvkhqsulo4] {
    color: #282885;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 8px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hazards-grid[b-dvkhqsulo4] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .hazard-card[b-dvkhqsulo4] {
        padding: 1rem;
        height: 120px;
    }

    .icon-container[b-dvkhqsulo4] {
        width: 50px;
        height: 50px;
    }

    .icon-container span[b-dvkhqsulo4] {
        font-size: 20px;
    }

    .hazard-title[b-dvkhqsulo4] {
        font-size: 0.9rem;
    }

    .hazards-header h1[b-dvkhqsulo4] {
        font-size: 1.8rem;
    }

    .subtitle[b-dvkhqsulo4] {
        font-size: 1rem;
    }
}
/* /Features/Home/HomePage.razor.rz.scp.css */
.home-container[b-qnymrkyylm] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Titillium Web', sans-serif;
}

.welcome-section[b-qnymrkyylm] {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f6f4e7 0%, #ffffff 100%);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.welcome-section h1[b-qnymrkyylm] {
    color: #282885;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle[b-qnymrkyylm] {
    color: #1dc1c3;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.content-card[b-qnymrkyylm] {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.content-card h2[b-qnymrkyylm] {
    color: #282885;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.content-card h2[b-qnymrkyylm]:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #dac576;
    border-radius: 2px;
}

.content-card p[b-qnymrkyylm] {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.info-box[b-qnymrkyylm] {
    display: flex;
    background-color: #f9f9ff;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #1dc1c3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover[b-qnymrkyylm] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.info-icon[b-qnymrkyylm] {
    flex: 0 0 60px;
    height: 60px;
    background-color: rgba(29, 193, 195, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i[b-qnymrkyylm] {
    font-size: 1.5rem;
    color: #1dc1c3;
}

.info-content[b-qnymrkyylm] {
    flex: 1;
}

.info-content h3[b-qnymrkyylm] {
    color: #282885;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.info-content p[b-qnymrkyylm] {
    margin-bottom: 0;
    font-size: 1rem;
}

.action-section[b-qnymrkyylm] {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #f6f4e7;
    border-radius: 10px;
}

.action-section p[b-qnymrkyylm] {
    font-size: 1.2rem;
    font-weight: 500;
    color: #282885;
    margin-bottom: 20px;
}

.get-started-btn[b-qnymrkyylm] {
    display: inline-block;
    background-color: #282885;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 40, 133, 0.2);
}

.get-started-btn:hover[b-qnymrkyylm] {
    background-color: #1dc1c3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 193, 195, 0.3);
}

@media (max-width: 768px) {
    .welcome-section h1[b-qnymrkyylm] {
        font-size: 2rem;
    }

    .subtitle[b-qnymrkyylm] {
        font-size: 1.1rem;
    }

    .info-box[b-qnymrkyylm] {
        flex-direction: column;
    }

    .info-icon[b-qnymrkyylm] {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* /Features/PrivacyPolicy/PrivacyPolicyPage.razor.rz.scp.css */
.privacy-policy-container[b-7sjro3k6zl] {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    font-family: 'Titillium Web', sans-serif;
    color: #333333;
}

.policy-header[b-7sjro3k6zl] {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid #f6f4e7;
    padding-bottom: 1.5rem;
}

.policy-header h1[b-7sjro3k6zl] {
    color: #282885;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-updated[b-7sjro3k6zl] {
    color: #8b8baa;
    font-size: 0.9rem;
}

.policy-intro[b-7sjro3k6zl] {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555555;
}

.policy-intro p[b-7sjro3k6zl] {
    margin-bottom: 1rem;
}

.policy-sections[b-7sjro3k6zl] {
    margin-bottom: 3rem;
}

/* Styling the Syncfusion Accordion */
[b-7sjro3k6zl] .e-acrdn-header {
    background-color: #f6f4e7 !important;
    color: #282885 !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
    border: none !important;
}

[b-7sjro3k6zl] .e-acrdn-header:hover {
    background-color: #efebd0 !important;
}

[b-7sjro3k6zl] .e-acrdn-item {
    margin-bottom: 1rem !important;
    border: none !important;
}

[b-7sjro3k6zl] .e-acrdn-content {
    background-color: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 0 0 8px 8px !important;
    padding: 1.5rem !important;
}

.policy-content[b-7sjro3k6zl] {
    line-height: 1.6;
}

.policy-content h3[b-7sjro3k6zl] {
    color: #282885;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

.policy-content p[b-7sjro3k6zl] {
    margin-bottom: 1rem;
    color: #555555;
}

.policy-content ul[b-7sjro3k6zl] {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #555555;
}

.policy-content li[b-7sjro3k6zl] {
    margin-bottom: 0.5rem;
}

.policy-contact[b-7sjro3k6zl] {
    margin-bottom: 3rem;
}

/* Card styling */
[b-7sjro3k6zl] .contact-card {
    border: none !important;
    box-shadow: 0 4px 12px rgba(218, 197, 118, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

[b-7sjro3k6zl] .e-card-header {
    background-color: #f6f4e7 !important;
    color: #282885 !important;
    padding: 1rem 1.5rem !important;
    font-weight: 600 !important;
}

[b-7sjro3k6zl] .e-card-content {
    padding: 1.5rem !important;
}

.contact-details[b-7sjro3k6zl] {
    margin-top: 1rem;
}

.contact-item[b-7sjro3k6zl] {
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
}

.contact-label[b-7sjro3k6zl] {
    font-weight: 600;
    color: #282885;
    margin-right: 0.5rem;
    min-width: 80px;
}

.contact-item a[b-7sjro3k6zl] {
    color: #1dc1c3;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover[b-7sjro3k6zl] {
    color: #00a6a8;
    text-decoration: underline;
}

.policy-acknowledgment[b-7sjro3k6zl] {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #f6f4e7;
}

.policy-acknowledgment h3[b-7sjro3k6zl] {
    color: #282885;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.acknowledgment-action[b-7sjro3k6zl] {
    margin-top: 2rem;
}

/* Button styling */
[b-7sjro3k6zl] .accept-button {
    background-color: #282885 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.7rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    font-size: 1rem !important;
}

[b-7sjro3k6zl] .accept-button:hover {
    background-color: #1e1e60 !important;
    box-shadow: 0 4px 12px rgba(40, 40, 133, 0.25) !important;
    transform: translateY(-2px) !important;
}

[b-7sjro3k6zl] .accept-button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(40, 40, 133, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .privacy-policy-container[b-7sjro3k6zl] {
        padding: 1.5rem;
        margin: 1rem;
    }

    .policy-header h1[b-7sjro3k6zl] {
        font-size: 1.8rem;
    }

    .contact-item[b-7sjro3k6zl] {
        flex-direction: column;
    }

    .contact-label[b-7sjro3k6zl] {
        margin-bottom: 0.3rem;
    }
}
/* /Features/UserSurvey/UserSurveyPage.razor.rz.scp.css */
/* Enhanced Survey Styles - Focus on transitions and animations */
.survey-container[b-xdxvdtm77q] {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background:
            #f8faff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    font-family: 'Titillium Web', sans-serif;
}

/* Progress Bar with gradient and animation */
.survey-progress[b-xdxvdtm77q] {
    width: 100%;
    height: 4px;
    background: rgba(230, 232, 240, 0.5);
    overflow: hidden;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.progress-bar[b-xdxvdtm77q] {
    height: 100%;
    background: linear-gradient(to right, #6658f5, #1dc1c3);
    transition: width 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 0;
}

/* Question Styles */
.survey-question-wrapper[b-xdxvdtm77q] {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

/* Background color states */
.bg-default[b-xdxvdtm77q] {
    background: #f0f4ff !important;
}
.bg-green[b-xdxvdtm77q] {
    background: #e7f9f0 !important;
}
.bg-red[b-xdxvdtm77q] {
    background: #ffeef0 !important;
}
.bg-blue[b-xdxvdtm77q] {
    background: #e5f0ff !important;
}
.bg-bright-yellow[b-xdxvdtm77q] {
    background: #fffae6 !important;
}

/* Emoji Background - Much larger and more interactive */
.survey-emoji-bg[b-xdxvdtm77q] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
}

.survey-emoji[b-xdxvdtm77q] {
    font-size: 25rem;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(1px);
    pointer-events: none;
    transform: scale(0.5) translateY(40px);
}

/* Active emoji state */
.animate-emoji .survey-emoji[b-xdxvdtm77q] {
    opacity: 0.15;
    transform: scale(1) translateY(0);
}

/* Giant emoji that appears on selection */
.giant-emoji[b-xdxvdtm77q] {
    position: fixed;
    top: 0;
    left: 0; /* Will adjust with JS */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}


.giant-emoji span[b-xdxvdtm77q] {
    font-size: 15rem;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.giant-emoji.show[b-xdxvdtm77q] {
    opacity: 1;
}

.giant-emoji.show span[b-xdxvdtm77q] {
    transform: scale(1);
    animation: floatUp-b-xdxvdtm77q 1.5s forwards;
}

@keyframes floatUp-b-xdxvdtm77q {
    0% { transform: scale(1); }
    70% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(0.9) translateY(-200px); opacity: 0; }
}

/* Question Card with enhanced transitions */
.survey-question-card[b-xdxvdtm77q] {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(145, 158, 171, 0.15);
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 540px;
    position: relative;
    z-index: 5;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    transform: translateY(0);
}

.question-exit[b-xdxvdtm77q] {
    opacity: 0;
    transform: translateY(50px);
}

.question-enter[b-xdxvdtm77q] {
    opacity: 0;
    transform: translateY(50px);
    animation: cardEnter-b-xdxvdtm77q 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes cardEnter-b-xdxvdtm77q {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.survey-question-card h2[b-xdxvdtm77q] {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #282885;
    line-height: 1.3;
}

.survey-question-description[b-xdxvdtm77q] {
    font-size: 1.15rem;
    color: #5B6990;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.survey-question-text[b-xdxvdtm77q] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    color: #282885;
    line-height: 1.4;
}

/* Answer Buttons with enhanced animations */
.survey-answer-buttons[b-xdxvdtm77q] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    transition: opacity 0.4s, transform 0.3s;
}

.survey-answer-buttons.dimmed[b-xdxvdtm77q] {
    opacity: 0.4;
    transform: scale(0.98);
}

.survey-answer-btn[b-xdxvdtm77q] {
    font-size: 1.1rem;
    border-radius: 16px;
    padding: 1rem 1.6rem;
    background: #f4f6fa;
    color: #293a56;
    border: none;
    box-shadow: 0 2px 10px rgba(82, 95, 127, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.survey-answer-btn:hover:not(:disabled)[b-xdxvdtm77q] {
    background: #eef2fd;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(82, 95, 127, 0.12);
}

.survey-answer-btn.selected[b-xdxvdtm77q] {
    background: #6658f5;
    color: white;
    font-weight: 600;
    transform: translateX(0);
    animation: pulse-b-xdxvdtm77q 1s infinite;
}

.survey-answer-btn.selected .answer-emoji[b-xdxvdtm77q] {
    transform: scale(1.2);
}

@keyframes pulse-b-xdxvdtm77q {
    0% { box-shadow: 0 0 0 0 rgba(102, 88, 245, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(102, 88, 245, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 88, 245, 0); }
}

.answer-emoji[b-xdxvdtm77q] {
    font-size: 1.5rem;
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.answer-text[b-xdxvdtm77q] {
    flex: 1;
}

/* Enhanced feedback message */
.survey-feedback-message[b-xdxvdtm77q] {
    margin: 1.5rem auto;
    font-size: 1.3rem;
    color: #366E24;
    background: rgba(233, 255, 233, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 1rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    max-width: 85%;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(50, 70, 93, 0.08);
}

.message-appear[b-xdxvdtm77q] {
    animation: messageAppear-b-xdxvdtm77q 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes messageAppear-b-xdxvdtm77q {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Improved Next Button */
.survey-next-btn[b-xdxvdtm77q] {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    background: #282885;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(40, 40, 133, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    animation: fadeInUp-b-xdxvdtm77q 0.7s;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.survey-next-btn:hover[b-xdxvdtm77q] {
    background: #3c3c9a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(40, 40, 133, 0.3);
}

.survey-next-btn:active[b-xdxvdtm77q] {
    transform: translateY(-1px);
}

@keyframes fadeInUp-b-xdxvdtm77q {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Start Card animation and effects */
.survey-start-card[b-xdxvdtm77q] {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(145, 158, 171, 0.15);
    padding: 3rem;
    width: 90%;
    max-width: 580px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 5vh auto;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.survey-start-card:hover[b-xdxvdtm77q] {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(145, 158, 171, 0.2);
}

.survey-header h2[b-xdxvdtm77q] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #282885;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.survey-emoji-intro[b-xdxvdtm77q] {
    font-size: 7rem;
    margin: 2rem 0;
    position: relative;
}

.survey-emoji-intro[b-xdxvdtm77q]::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(102, 88, 245, 0.05);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.emoji[b-xdxvdtm77q] {
    display: inline-block;
}

.emoji.pulse[b-xdxvdtm77q] {
    animation: emoji-pulse-b-xdxvdtm77q 3s infinite;
}

@keyframes emoji-pulse-b-xdxvdtm77q {
    0% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(0.95); }
    30% { transform: scale(1.05); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

.survey-start-btn[b-xdxvdtm77q] {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    background: #282885;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 20px rgba(40, 40, 133, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.survey-start-btn[b-xdxvdtm77q]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6658f5, #1dc1c3);
    transition: width 0.4s ease-in;
    z-index: -1;
}

.survey-start-btn:hover[b-xdxvdtm77q] {
    box-shadow: 0 15px 30px rgba(40, 40, 133, 0.3);
    transform: translateY(-4px);
}

.survey-start-btn:hover[b-xdxvdtm77q]::before {
    width: 100%;
}

/* Confetti animation for positive responses */
.confetti-container[b-xdxvdtm77q] {
    position: fixed;
    top: 0;
    left: 0; /* Will adjust with JS to account for sidebar */
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 2000;
    overflow: hidden;
}


.confetti[b-xdxvdtm77q] {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color:
            #ffd700;
    opacity: 0.7;
    z-index: 2000;  /* Make sure individual confetti pieces inherit the high z-index */
}

/* Responsive design for all screen sizes */
@media (max-width: 768px) {
    .survey-question-card[b-xdxvdtm77q] {
        padding: 2rem 1.5rem;
        width: 92%;
    }

    .survey-question-card h2[b-xdxvdtm77q] {
        font-size: 1.7rem;
    }

    .survey-start-card[b-xdxvdtm77q] {
        padding: 2.5rem 1.5rem;
    }

    .survey-emoji[b-xdxvdtm77q] {
        font-size: 15rem;
    }

    .giant-emoji span[b-xdxvdtm77q] {
        font-size: 10rem;
    }

    .survey-header h2[b-xdxvdtm77q] {
        font-size: 2rem;
    }
}

/* Background wave animation for select response screens */
.wave-background[b-xdxvdtm77q] {
    position: fixed;
    top: 0;
    left: 0; /* Will adjust with JS */
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 0.3;
    overflow: hidden;
}


.wave[b-xdxvdtm77q] {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-50%);
    animation: wave-b-xdxvdtm77q 8s linear infinite;
}

@keyframes wave-b-xdxvdtm77q {
    0% { transform: translateX(-50%) skewX(0); }
    100% { transform: translateX(50%) skewX(15deg); }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-196ym5szvm] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(191, 216, 184, 0.5) 0%, rgba(145, 165, 140, 0.7) 50%, rgba(95, 115, 92, 1) 100%); /* Light to dark sage gradient frame */
    margin: 0;
    padding: 0;
}

.sidebar[b-196ym5szvm] {
    width: 80px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    flex-shrink: 0;
    z-index: 1000;
}

.main-wrapper[b-196ym5szvm] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    margin-left: 60px;
    min-height: 100vh;
    padding: 20px;
}

.top-bar[b-196ym5szvm] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(91, 154, 158, 0.05) 100%);
    backdrop-filter: blur(5px);
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(91, 154, 158, 0.1);
    border-radius: 20px 20px 0 0;
}

.top-bar-content[b-196ym5szvm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn[b-196ym5szvm] {
    color: #14213D;
    font-weight: 600;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.back-btn:hover[b-196ym5szvm] {
    color: #5B9A9E;
    transform: translateX(-2px);
}

.user-info[b-196ym5szvm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #14213D;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.member-avatars[b-196ym5szvm] {
    display: flex;
    gap: -5px;
}

.avatar[b-196ym5szvm] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #C8A951, #F0E68C);
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin-left: -5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(200, 169, 81, 0.3);
}

.avatar:first-child[b-196ym5szvm] {
    margin-left: 0;
}

.floating-content[b-196ym5szvm] {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(91, 154, 158, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
}

.content[b-196ym5szvm] {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    max-height: 100%;
}

.app-footer[b-196ym5szvm] {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(226, 230, 234, 0.6) 100%);
    backdrop-filter: blur(5px);
    padding: 0.5rem 2rem;
    border-top: 1px solid rgba(91, 154, 158, 0.1);
    margin-top: auto;
    border-radius: 0 0 20px 20px;
}

.footer-content[b-196ym5szvm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.copyright[b-196ym5szvm] {
    color: #14213D;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.footer-links[b-196ym5szvm] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-196ym5szvm] {
    color: #5B9A9E;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.footer-links a:hover[b-196ym5szvm] {
    color: #C8A951;
    text-decoration: underline;
    transform: translateY(-1px);
}

.reload-link[b-196ym5szvm] {
    color: #cccccc !important; /* Very faint color */
    font-style: italic;
    cursor: pointer;
}

.reload-link:hover[b-196ym5szvm] {
    color: #999999 !important;
}

.top-row[b-196ym5szvm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-196ym5szvm]  a, .top-row[b-196ym5szvm]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-196ym5szvm]  a:hover, .top-row[b-196ym5szvm]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-196ym5szvm]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .sidebar[b-196ym5szvm] {
        width: 80px;
    }
    
    .main-wrapper[b-196ym5szvm] {
        margin-left: 80px;
        padding: 15px;
    }

    .content[b-196ym5szvm] {
        padding: 1.5rem;
    }
    
    .top-bar[b-196ym5szvm] {
        padding: 0.8rem 1.5rem;
    }
    
    .app-footer[b-196ym5szvm] {
        padding: 0.8rem 1.5rem;
    }
    
    .footer-links[b-196ym5szvm] {
        gap: 0.8rem;
    }
}

@media (max-width: 640.98px) {
    .page[b-196ym5szvm] {
        flex-direction: column;
    }

    .sidebar[b-196ym5szvm] {
        width: 100%;
        height: 80px;
        position: relative;
        top: 0;
    }

    .main-wrapper[b-196ym5szvm] {
        margin-left: 0;
        padding: 10px;
    }

    .floating-content[b-196ym5szvm] {
        border-radius: 15px;
    }
    
    .top-bar[b-196ym5szvm] {
        border-radius: 15px 15px 0 0;
    }
    
    .app-footer[b-196ym5szvm] {
        border-radius: 0 0 15px 15px;
    }

    .content[b-196ym5szvm] {
        padding: 1rem;
    }

    .top-bar[b-196ym5szvm] {
        padding: 0.8rem 1rem;
    }
    
    .app-footer[b-196ym5szvm] {
        padding: 0.8rem 1rem;
    }

    .footer-content[b-196ym5szvm] {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .copyright[b-196ym5szvm] {
        margin-bottom: 0;
    }

    .footer-links[b-196ym5szvm] {
        font-size: 0.75rem;
        gap: 1rem;
    }

    .user-info[b-196ym5szvm] {
        gap: 0.5rem;
    }

    .member-avatars[b-196ym5szvm] {
        display: none; /* Hide avatars on mobile */
    }
}

/* Remove the !important rules from here since they can cause issues */
@media (min-width: 641px) {
    .top-row[b-196ym5szvm], article[b-196ym5szvm] {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .top-row.auth[b-196ym5szvm]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Modern sage green gradient sidebar - light to dark */
.nav-sidebar[b-1ys0wwigmu] {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    font-family: 'Titillium Web', sans-serif;
    border-radius: 0;
}

.sidebar-header[b-1ys0wwigmu] {
    padding: 1.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.sidebar-logo[b-1ys0wwigmu] {
    height: 30px;
    width: auto;
    /* Remove white filter to show original gold/navy logo colors */
}

.sidebar-ul[b-1ys0wwigmu] {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    flex: 1;
}

.sidebar-li[b-1ys0wwigmu] {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0.8rem 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    background: #ffffff; /* White background */
    color: #C8A951; /* Gold icons */
    position: relative;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(20, 33, 61, 0.3);
}

.sidebar-li:hover[b-1ys0wwigmu] {
    background: #ffffff; /* Keep white background on hover */
    color: #C8A951; /* Keep gold icons on hover */
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(200, 169, 81, 0.3);
}

.sidebar-li.sidebar-active[b-1ys0wwigmu] {
    background: #C8A951; /* Gold background for active */
    color: #ffffff; /* White icon for active */
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(200, 169, 81, 0.4), 0 2px 6px rgba(255, 255, 255, 0.2);
}

.sidebar-icon-container[b-1ys0wwigmu] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.sidebar-li.sidebar-active .sidebar-icon-container[b-1ys0wwigmu] {
    background: transparent;
}

.sidebar-icon[b-1ys0wwigmu] {
    font-size: 1.2rem;
    color: inherit;
    transition: all 0.3s;
}

.sidebar-li:hover .sidebar-icon[b-1ys0wwigmu] {
    color: inherit;
}

.sidebar-li.sidebar-active .sidebar-icon[b-1ys0wwigmu] {
    color: inherit;
}

.sidebar-text[b-1ys0wwigmu] {
    display: none; /* Hide text in compact sidebar */
}

.sidebar-footer[b-1ys0wwigmu] {
    padding: 1.2rem 1.5rem;
    font-size: 0.75rem;
    color: #b4b4cc; /* Light blue-gray */
    text-align: center;
    border-top: 1px solid #f6f4e7; /* Very light gold tint */
}

@media (max-width: 900px) {
    .nav-sidebar[b-1ys0wwigmu] {
        width: 80px; /* Keep consistent width */
    }

    .sidebar-li[b-1ys0wwigmu] {
        width: 50px;
        height: 50px;
        margin: 0.6rem 0.4rem;
        background: #ffffff; /* White background */
        color: #C8A951; /* Gold icons */
    }

    .sidebar-icon[b-1ys0wwigmu] {
        font-size: 1rem;
    }
}

@media (max-width: 640.98px) {
    .nav-sidebar[b-1ys0wwigmu] {
        width: 100%;
        height: 80px;
        flex-direction: row;
        border-radius: 0;
        position: relative;
    }

    .sidebar-header[b-1ys0wwigmu] {
        padding: 1rem;
        margin: 0;
        margin-right: auto;
    }

    .sidebar-ul[b-1ys0wwigmu] {
        display: flex;
        flex-direction: row;
        padding: 0;
        margin: 0;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .sidebar-li[b-1ys0wwigmu] {
        width: 50px;
        height: 50px;
        margin: 0.5rem;
        background: #ffffff; /* White background on mobile */
        color: #C8A951; /* Gold icons on mobile */
    }

    .sidebar-logo[b-1ys0wwigmu] {
        height: 35px;
    }
}
