/* ===== Reset ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #222;
}

/* ===== Header ===== */
.site-header {
    background: #0b3c49;
    color: #fff;
    padding: 16px 20px;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
}

.logo {
    margin: 0;
    font-size: 22px;
}

.main-nav {
    margin-top: 10px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 16px;
    font-weight: bold;
}

/* ===== Content ===== */
.site-content {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 24px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

h2, h3 {
    color: #0b3c49;
}

/* ===== Footer ===== */
.site-footer {
    background: #0b3c49;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 14px;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 6px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .main-nav a {
        display: block;
        margin: 8px 0;
    }

    .site-content {
        padding: 16px;
    }
}

.logo-bottom-right img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
    border: 2px solid #ffffff;
}

/* =====================================================
   Power BI Fullscreen Embed (backup.php)
   Utility styles – NOT content pages
   ===================================================== */

body.embed-page,
html.embed-page {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* Top title overlay */
.report-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    pointer-events: none;
}

/* Bottom-right circular logo */
.logo-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 35px;
    z-index: 9999;
}

.logo-bottom-right img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
    border: 2px solid #ffffff;
}

/* Fullscreen Power BI iframe */
.full-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


