* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

#togglePassword img {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

#togglePassword:hover img {
    opacity: 1;
}

main {
    position: fixed;
    top: 5rem; /* 80px header height */
    left: 0;
    right: 0;
    bottom: -12px;
    overflow: hidden;
}

/* Report container fills main completely */
section#report-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Target every possible Power BI wrapper */
section#report-container > *,
section#report-container iframe,
section#report-container div {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
}

.error-container {
    display: none;
    padding: 20px;
}


.displayAreaContainer,
.displayArea {
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
}