/* Wrapper around the invoice section */
.invoice-history-wrapper {
    margin-top: 30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Heading */
.invoice-history-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

/* Table base */
.invoice-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background-color: #fafafa;
}

.invoice-history-table thead {
    background-color: #f1f1f1;
}

.invoice-history-table th,
.invoice-history-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Header styling */
.invoice-history-table th {
    color: #444;
    font-weight: 600;
}

/* Currency formatting */
.invoice-history-table td.amount {
    font-weight: bold;
    color: #222;
}

/* Button */
.invoice-history-table .invoice-action-button {
    background-color: #2d2d2d;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.invoice-history-table .invoice-action-button:hover {
    background-color: #555;
}
td#invoice-id-userpannel {
    color: #7e2323f2;
}

.invoice-history-table button:disabled,
	.invoice-history-table button[disabled],.invoice-history-table button[disabled]:hover{
	  border: 1px solid #999999;
	  background-color: #cccccc;
	  color: #666666;
	  cursor: auto;
}

.invoice-history-table button{
margin-left:5px;
margin-bottom:5px;
}