﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/* Footer styles */
.footer {
    padding: 10px 0px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Main layout structure */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
    overflow-x: hidden !important;
    padding-top: 50px;
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    flex: 1; /* grow to fill remaining space */
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.content {
    flex: 1; /* pushes footer to bottom */
    padding: 20px;
    background-color: #fff;
}

.spacer {
    flex: 1;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Define variables for repeated colors */
:root {
    --highlight-color: #0382b3c2;
}

/* User dropdown styling */
.dropdown {
    position: relative;
}

.user-dropdown {
    right: 0;
    left: auto;
    min-width: 240px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
    }

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.icon-large {
    font-size: 30px !important;
}

/* Base body and HTML styles */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Ensure SplitterPane content fills height */
.e-pane-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Syncfusion Chart font override - use app font instead of Roboto */
.e-chart,
.e-accumulationchart,
.e-chart text,
.e-accumulationchart text,
.e-chart svg text,
.e-accumulationchart svg text,
.e-chart [id*="AxisLabel"],
.e-chart [id*="axis_title"],
.e-chart [id*="legend"],
.e-chart [id*="datalabel"],
.e-chart [id*="tooltip"],
.e-accumulationchart [id*="legend"],
.e-accumulationchart [id*="datalabel"] {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}


