.bank-card {
  background: linear-gradient(135deg, #4154f1 0, #191818 100%);
  border-radius: 16px;
  color: white;
  padding: 20px;
  width: 320px;
  height: 200px;
  font-family: "Arial", sans-serif;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bank-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  /* margin-bottom: 10px; */
}
.bank-card-title {
  font-size: 20px;
}

.chip-contactless {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.chip {
  width: 40px;
  height: 30px;
  background: #ddd;
  border-radius: 6px;
}

.contactless {
  font-size: 20px;
}

.bank-card-number {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bank-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.valid-thru small {
  font-size: 10px;
  color: #ccc;
}

.card-logo {
  font-size: 20px;
  font-weight: bold;
  color:#28a745;
}

.card-money {
  font-size: 50px;
  font-weight: bold;
}
.donut-chart {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#28a745 67%, #e9ecef 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.donut-yellow {
  background: conic-gradient(#ffc107 34%, #e9ecef 0);
}

.donut-text {
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
}

.bg-blue {
  background-color: linear-gradient(
    135deg,
    #4154f1 0,
    #2c384e 100%
  ); /* Bleu Bootstrap */
  color: white; /* Texte en blanc pour un meilleur contraste */
}
