.wallet-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: transparent; 
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 4px 8px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 14px;
    width: 80%;
  }
  
  .wallet-label {
    font-weight: normal;
  }
  
  .wallet-amount {
    font-weight: bold;
  }

  /* Styles pour le renommage des services */
  .rename-service-btn {
    opacity: 0.7;
    transition: all 0.2s ease;
  }

  .rename-service-btn:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  .service-rename-input {
    transition: all 0.2s ease;
  }

  .service-rename-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  }

  .rename-buttons .btn {
    transition: all 0.2s ease;
  }

  .rename-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  