

.amountcell {
    text-align: right !important;
}

#searchInput {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
}
/* Add this CSS in your stylesheet or inline style */
.scrollable-table {
    max-height: 200px;
    /* Set the maximum height as per your design */
    overflow-y: auto;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    /* Adjust the width as needed */
    max-height: 400px;
    /* Adjust the max-height as needed */
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.loader {
    animation: spin988 2s linear infinite;
}

@keyframes spin988 {
0% {
    transform: scale(1) rotate(0deg);
}

100% {
    transform: scale(1) rotate(360deg);
}
}