/* Add your CSS styles here */
#fileUploadContainer {
    border: 6px solid #007bff; /* Increase border width */
    padding: 16px; /* Adjust padding to create space between content and border */
    text-align: center;
    cursor: pointer;
    transition: border 0.3s, background-color 0.3s; /* Add transition for background color */
    height: 250px;
    background-color: #87ceeb; /* Light pink */
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}




    /* Add hover effect */
    #fileUploadContainer:hover {
        background-color: #fff0f5; /* Light sky blue */
        border-color: #0056b3;
    }

    #chooseFileBtn {
        margin-top: 20px;
        display: none; /* Hide the Choose File button */
    }

    #pdf_file {
        display: none;
    }

    #progressBar {
    margin-top: 20px;
    height: 20px; /* Set the height of the progress bar */
    /* Set the metallic green gradient background for the progress bar */
    background: linear-gradient(to right, #556b2f, #6b8e23, #8fbc8f, #c0c0c0, #808080, #c0c0c0, #8fbc8f, #6b8e23, #556b2f);
    animation: progressAnimation 5s linear forwards; /* Define animation */
}

    /* Define the animation */
    @keyframes progressAnimation {
        from { width: 0%; } /* Start width of the progress bar */
        to { width: 100%; } /* End width of the progress bar */
    }

    

    /* Position download button to the right of the iframe */
    #downloadLink {
    display: inline-block;
    margin-left: 10px; /* Adjust spacing as needed */
    padding: 14px 65px; /* Adjust padding to increase button size */
    font-size: 48px; /* Adjust font size */
    font-weight: bold; /* Make the text bold */
}
@media (max-width: 576px) {
    #downloadLink {
        padding: 10px 30px; /* Adjust padding for smaller screens */
        font-size: 24px; /* Adjust font size for smaller screens */
    }
}


    .pdf-container {
        display: flex;
        align-items: flex-start;
        width: 100%;
    }

    #pdfViewer {
        width: 50%;
        height: 250px;
        margin-right: 20px;
    }

    #downloadSection {
        margin-left: auto;
    }