.site-header {
    display: flex;
    justify-content: space-between; /* logo left, gear right */
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa; /* light gray background */
    border-bottom: 1px solid #ddd;
}

.logo-block {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;   /* adjust logo size */
    height: auto;
    margin-right: 10px;
}

.site-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.settings-block .settings-icon {
    font-size: 22px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.settings-block .settings-icon:hover {
    color: #007BFF; /* blue hover effect */
}

/* BSC */

.bsc-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    grid-template-rows: auto auto;  /* two rows */
    gap: 20px;
    padding: 20px;
}

.quadrant {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.quadrant h3 {
    margin-top: 0;
    color: #007BFF;
}

.quadrant ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.quadrant li {
    margin: 5px 0;
    font-weight: 500;
}

/* BSC - Capacity */

.sector-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two cards per row */
    gap: 20px;
    padding: 20px;
}

.sector-card {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.sector-card img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.sector-info h4 {
    margin: 0;
    color: #007BFF;
}

.sector-info p {
    margin: 3px 0;
    font-size: 14px;
}

.progress {
    background: #eee;
    border-radius: 4px;
    height: 8px;
    margin: 8px 0;
    width: 100%;
}

.bar {
    background: #007BFF;
    height: 100%;
    border-radius: 4px;
}

.resource-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two cards per row */
    gap: 20px;
    margin-top: 15px;
}

.resource-card {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.resource-card img {
    width: 40px;
    height: auto;
    margin-right: 12px;
}

.resource-info h4 {
    margin: 0;
    color: #007BFF;
}

.resource-info p {
    margin: 3px 0;
    font-size: 14px;
}

.progress {
    background: #eee;
    border-radius: 4px;
    height: 8px;
    margin: 8px 0;
    width: 100%;
}

.bar {
    background: #28a745; /* green for sustainability */
    height: 100%;
    border-radius: 4px;
}


.dashboard-footer {
    text-align: center;
    margin-top: 30px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    color: #666;
}


.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #f1f1f1;
}

.footer-logos img {
    height: 70px;
    object-fit: contain;
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: #333;
    color: #fff;
}

.footer-contact h4 {
    margin-bottom: 10px;
    color: #ffd700; /* gold accent */
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
}


