* {
    margin: 0;
    padding: 0;
}

/* Progress Bar Styles */
.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    width: 0;
    height: 20px;
    background-color: #4CAF50;
}

/* Popup Scroll Styles */
.popup-scroll {
    max-height: 70vh;
    overflow-y: auto;
}


/* Bootstrap Modal Custermized button Style */
.btn-outline-secondary {
    color: #7793ab;
    border-color: #7793ab;
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #7793ab;
        border-color: #7793ab;
    }

.btn-outline-primary {
    color: #7ddfff;
    border-color: #7ddfff;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #7793ab;
        border-color: #7793ab;
    }


/* Project - upload popup */
.upload-section {
    cursor: pointer;
    border-style: dashed;
    border: 2px dashed #ced4da;
    height: 300px;
}

.existing-documents-section {
    height: 300px;
    overflow-y: hidden;
    position: relative;
}

    .existing-documents-section label {
        position: sticky;
        top: 0;
        z-index: 10;
    }

#documentList {
    max-height: 230px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.list-group-item {
    display: flex;
    align-items: center;
}

    .list-group-item span {
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .list-group-item img {
        width: 60px;
        margin-right: 50px;
        height: auto;
    }
