@ -1,219 +0,0 @@
.transaction-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.transaction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.transaction-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

.transaction-item:hover::before {
    transform: translateX(100%);
}

.operator-icons {
    position: relative;
    width: 90px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-icon {
    position: absolute;
    border-radius: 12px;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    transform-origin: center;
}

.operator-icons img:first-child {
    left: 0;
    z-index: 1;
}

.operator-icons img:last-child {
    right: 0;
    z-index: 2;
}

.transaction-item:hover .operator-icons img:first-child {
    transform: translateX(-5px);
}

.transaction-item:hover .operator-icons img:last-child {
    transform: translateX(5px);
}

.status-pending {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1); }
}

.country-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.country-flag:hover {
    transform: scale(1.15);
}

.transaction-details {
    font-size: 0.875rem;
    color: #6c757d;
}

.transaction-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.transaction-amount:hover {
    background: rgba(25, 135, 84, 0.15);
    transform: scale(1.05);
}

.transaction-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.transaction-status:hover {
    background-color: rgba(13, 110, 253, 0.15);
    transform: scale(1.05);
}

/* Styles pour le modal */
.modal-content {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    overflow: hidden;
}

.modal-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0;
}

.modal-body {
    background-color: #fff;
}

.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000;
}

.badge.bg-success {
    background-color: #198754 !important;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.fw-medium {
    font-weight: 500;
}

.text-primary {
    color: #0d6efd;
}

.text-muted {
    color: #6c757d;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

/* Animation du spinner */
.spinner-grow-sm {
    width: 0.5rem;
    height: 0.5rem;
}

/* Styles spécifiques pour le modal de transaction */
.modal-dialog-centered .operator-icons {
    margin: 0 auto;
}

.modal-dialog-centered .transaction-amount {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
}

.modal-dialog-centered .country-flag {
    width: 24px;
    height: 24px;
    border-width: 2px;
}
