html, body {
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    /*padding-top: 40px;*/
    /*padding-bottom: 40px;*/
    background-color: #eeeeee;
}

.qm-header {
    height: 180px;
    width: 900px;
    background: #fff url(/app/assets/img/QM-Header.gif) left no-repeat;
    box-sizing: border-box;
    box-shadow: inset -30px 10px 40px 0px #eee;
}

#messageBox {
    text-align: left;
    position: absolute; 
    top: calc(54px + 1rem);
    right: 1rem;
    height: calc(1rem + 34px + 34px + 4px );
    font-size: 1.6rem;
}

#messageHeader{
    font-weight: bold;
    text-align: left;
    font-size: 1.25em;
}

.no-sides{
    padding-left:   0;
    margin-left:    0;
    padding-right:  0;
    margin-right:   0;
}

.pagebreak {
    page-break-after: always;
    page-break-inside: avoid;
    -webkit-region-break-inside: avoid;
}

.inactive {
    pointer-events: none;
    cursor: default;
}

input[type='checkbox'] {
    width:20px;
    height:20px;
}

.alert {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 500px;
    max-width: 90vw;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    padding: 1.5rem 2rem;
    z-index: 1050;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e8 0%, #f8f9fa 100%);
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #f8f9fa 100%);
    border-left: 4px solid #ff9800;
    color: #ef6c00;
}

.alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #f8f9fa 100%);
    border-left: 4px solid #f44336;
    color: #c62828;
}

.alert h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
}

.alert p {
    margin-bottom: 0;
    line-height: 1.5;
}

.alert > .close {
    font-size: 24px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding-right: 2rem;
}

.alert > .close:hover {
    opacity: 1;
}


