.money-transfer-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 12px;
    background-color: #fff;
}

.money-transfer-table thead {
    background-color: #F16722;
    color: white;
    font-size: 12px;
    text-align: left;
}

.money-transfer-table th {
    padding: 10px 8px !important;
    border: 1px solid #ddd;
    color: white !important;
	line-height: 1.5em;
}
 
.money-transfer-table td {
    padding: 10px 8px !important;
    border: 1px solid #ddd;
	line-height: 1.5em;
}

.money-transfer-table th[data-sortable="true"] {
    text-decoration: underline;
    cursor: pointer;
    color: white; /* Ensure text remains white */
}
.money-transfer-table th[data-sortable="true"]:hover {
    opacity: 0.9;
}

.money-transfer-table th .sort-indicator {
    font-size: 12px;
    margin-left: 5px;
    color: #fff;
    text-decoration: none !important;
}

.money-transfer-table tbody tr:nth-child(even) {
    background-color: #F4F4F4;
}

.money-transfer-table tbody tr:hover {
    background-color: #ffe7d9;
}

.money-transfer-table a {
    color: #F37536;
    text-decoration: none;
    font-weight: 600;
}

.money-transfer-table a:hover {
    text-decoration: underline;
}

.mtc-button {
    display: inline-block;
    background-color: #F37536;
    color: white !important;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mtc-button:hover {
    background-color: #e15f1a;
    text-decoration: none;
}



/* Responsive table wrapper */
@media (max-width: 768px) {
    .money-transfer-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Modal Styling */
#operatorModal {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    max-width: 90%;
}

#operatorModal h3 {
    margin-top: 0;
    color: #F16722;
}

#operatorModal button {
    background-color: #F37536;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

#operatorModal button:hover {
    background-color: #e15f1a;
}

@media (max-width: 500px) {
    #operatorModal {
        width: 90%;
        padding: 10px;
    }
}

.msctable-footer {
    margin-top: 2rem;
    font-size: 13px;
    color: #333;
}

.msctable-footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0;
}

.msctable-footer li {
    margin-bottom: 6px;
}

.text-danger {
    color: #dc3545;
}

.text-green {
    color: #28a745;
}

