
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

        /* Main glass panel */
 .dashboard {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 80px 120px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 1400px;
    width: 90%;
} 

h1 {
    font-size: 4.5em;
    margin-bottom: 60px;
    color: #0A7E89;
    font-family: 'Merriweather', 'Open Sans';
    /* font-family:sans-serif;  */
    font-weight: 700;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 75px;
    font-weight: bold;
    color: #0b3c5d;
}

.stat-label {
    font-size: 25px;
    color: #0b3c5d;
    font-weight: bold;

    margin-top: 4px;
}

.ranking {
    color: #0b3c5d;
}

.last-updated {
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 0.9em;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.chart-container {
    height: 650px;          /* fixed height for LG TVs */
    margin-top: 20px;
}

#officesChart {
    height: 100% !important;  /* ensures canvas fills the container */
}


 .dashboard {
    max-width: 1300px;      
    margin: 20px auto 0;     /* top margin + auto horizontal centering */
    padding: 30px 40px;      /* breathing room around stats & chart */
    box-sizing: border-box;
    /* transform: scale(1.5);          50% bigger */
    /* width: 66.66%;                   1 / 1.5 to compensate scaling */


} 


