.transaction-card {
    background: #f7f8fb;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.status-text {
    font-weight: bold;
}

.transaction-id {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    color: black;
}

.transaction-id:hover {
    text-decoration: none;
}

.icon-green {
    color: #1db954;
}

.icon-red {
    color: #e63946;
}

.icon-blue {
    color: #3773f5;
}

.icon-copy {
    background-color: #eaf1ff;
    border-radius: 50%;
    padding: 5px 7px;
    cursor: pointer;
    transition: background 0.3s;
}

.icon-copy:hover {
    background-color: #cbd8ff;
}

.transaction-details {
    color: #6c757d;
    font-size: 14px;
}

.text-success {
    color: #1db954 !important;
}

.text-danger {
    color: #e63946 !important;
}

.text-warning {
    color: #f4a261 !important;
}

.text-muted {
    color: #a1a1a1 !important;
}

hr {
    border-color: #e0e0e0;
}

.filter-container {
    background: #f7f8fb;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    position: sticky;
    top: 70px;
    z-index: 1000;
}

.filter-container .form-group {
    margin: 0 !important;
}

.filter-group {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}


.filter-item {
    flex: 1;
}

.filter-item:last-child {
    flex: 0
}


.filter-label {
    font-weight: bold;
    color: #343a40;
    display: block;
    margin-bottom: 5px;
}

.custom-select,
.filter-input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    transition: 0.3s ease-in-out;
    font-size: 14px;
}

.custom-select:focus,
.filter-input:focus {
    border-color: #3773f5;
    box-shadow: 0 0 6px rgba(55, 115, 245, 0.4);
}


.btn-filter {
    height: 100%;
    width: 50px;
    padding: 10px;
    border-radius: 6px;
    background: #3773f5;
    color: white;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-filter i {
    font-size: 18px;
}

.btn-filter:hover {
    background: #2858c0;
    box-shadow: 0 0 8px rgba(55, 115, 245, 0.5);
}


.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0;
    gap: 10px;
}

.btn-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    background: #f8f9fa;
    color: #3773f5;
    border: 1px solid #3773f5;
    transition: all 0.3s ease;
}

.btn-pagination i {
    margin: 0;
}

.btn-pagination:hover {
    background: #3773f5;
    color: white;
}

.btn-pagination.disabled {
    background: #f1f1f1;
    color: #ccc;
    border-color: #ddd;
    pointer-events: none;
}