﻿

.transbutton-container
{
    text-align: center;
}
.transbutton {
    padding: 5px 15px;
    border: 1px solid #f09103;
    background-color: #f09103;
    color: white;
    border-radius: 10px;
    margin-top: 5px;
}
 
#invoiceContainer {
    background: #e6e6e6;
    padding: 10px;
    border-radius: 10px;
}
#receiptContainer {
    background: #cccccc;
    padding: 10px;
    border-radius: 10px;
}
.total-display {
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    display: inline;    
    margin-right: 25px;
    margin-left: 20px;
    color: red;
}
.search-row th input::placeholder {
    color: white;
}


/* Modal styles */
.paymentsmodal {

    position: fixed;  
    z-index: 1000;  
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%;  
    overflow: auto;  
    background-color: rgba(0, 0, 0, 0.5);  
}

.paymentsmodal-content {
    position: absolute;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    background-color: #fff;
    border: 1px solid #888;
    
    width: 90%;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px; 
}

.paymentsmodalclose {
   position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.paymentmodaltitle {
    background-color: #ce872a;
    color: black;
    padding: 10px;    
    text-align: center;
    font-size:14px;
    
}