.containerLogin {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.input-field {
    margin-bottom: 15px;
}

    .input-field label {
        display: block;
        margin-bottom: 5px;
    }

    .input-field input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

.button {
    width: 100%;
    padding: 10px;
    background-color: #543CF2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .button:hover {
        background-color: #543CF2;
    }

.otp-input {
    display: none; /* Initially hidden, shown after OTP is generated */
}

.login-button {
    display: none; /* Initially hidden, shown after OTP is entered */
}
.amount-input {
  position: relative;
  z-index: 10; /* Higher than the overlapping div */
}


/* Style for the loading overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-direction: column; /* Stack elements vertically */
}

/* Loading spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #543CF2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Style for the loading message */
.loading-message {
    margin-top: 20px; /* Space between spinner and message */
    font-size: 18px;
    color: white;
}
.invoice-list {
    width: 100%;
    border-collapse: collapse;
    /* width: max-content; */
}
    .invoice-list th, .invoice-list td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

    .invoice-list th {
        background-color: #f2f2f2;
    }


.link-style {
    color: #543CF2;
    text-decoration: none;
    cursor: pointer;
}

    .link-style:hover {
        text-decoration: underline;
    }


#captureBtn {
    background-color: #543CF2; /* Black background */
    color: #fff; /* White text */
    padding: 12px 20px; /* Padding for better button size */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Larger text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

#paginationControls {
    margin-top: 10px;
}

#searchInput {
    margin-bottom: 10px;
}

#searchIcon {
    color: #543CF2;
    font-size: 16px;
    cursor: pointer;
}

button:disabled {
    background-color: #ddd; /* Make disabled buttons appear grey */
    cursor: not-allowed; /* Change cursor to show it's not clickable */
}

button:hover {
    background-color: #4a2cd7; /* Slightly darker shade on hover */
}

.no-records {
    text-align: center;
    padding: 20px;
}

/* @media (max-width: 768px) {
    .invoice-list th,
    .invoice-list td {
        padding: 8px 6px;
        font-size: 13px;
    }

    #searchInput {
        width: 100%;
    }

    .button-container {
        margin-left: 0;
    }
} */
button {
    background-color: #543CF2; 
    color: white; 
    padding: 8px 16px; 
    border: none; 
    cursor: pointer; 
    border-radius: 4px; 
    margin: 0 5px; 
}
