.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    height: calc(100% - 100px);
    max-width: 1024px;
    background-color: #ffffff;
    /*margin: 20px;*/
    border-radius: 10px 0 0 10px;
    overflow-y: auto;
}

/* For webkit browsers (Chrome, Safari) */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #083964;
    border-radius: 0 10px 10px 0;
}

.modal-content::-webkit-scrollbar-track {
    background-color: darkgrey;
    border-radius: 0 10px 10px 0;
}

.text-center {
    text-align: center !important;
    padding-top: 20px !important;
}

.card.border-0 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.loan-detail-show-modal-container {
    display: none;
}

.card.no-margin {
    margin-bottom: 0 !important;
}

.file-drop-area {
    width: 300px;
    height: 200px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-btn {
    cursor: pointer;
}

.file-upload-info {
    margin: 10px 0;
}

.form-error-message {
    color: #ed0707;
}
