
#PDF-Container {
    position: relative; /* Ensures it respects the header's position */
    width: 100%;
    height: calc(100vh - 60px); /* 60px = header height */
    display: flex;
    flex-direction: column;
}

#pdf-viewer-title {
    background-color: #07294e;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

#pdf-viewer {
    flex: 1;
    background-color: #f5f5f5;
    border-top: solid #07294e 2px;
    overflow: hidden;
}

#pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile-specific styles */
@media only screen and (max-width: 768px) {

    #pdf-viewer {
        padding: 0;
    }
}