body {
    min-height: 100vh;
}
.transactions-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.transactions-table th {
    background: var(--pi-primary);
    color: white;
    padding: 12px;
    text-align: center;
}

.transactions-table td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.transactions-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

.badge-success {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
}

.badge-warning {
    background-color: #ffc107;
    color: black;
    padding: 6px 12px;
    border-radius: 6px;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
}

.badge-secondary {
    background-color: #6c757d;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
}
td, th {
    white-space: nowrap;
}
.wallet-address {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.refreshContainer {
    display: inline-block;
}
#refreshTransactionsList {
    font-size: 22px;
    color: var(--pi-primary);;
}
