.bank-link-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    max-width: 600px;
    margin: 20px auto;
}

.bank-link {
  flex: 1 1 calc(50% - 20px);
  color: #0a3b71;
  background: #e4ecf7;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #b0bac5;
  font-size: 14px;
  line-height: 1.6;
  
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .bank-link {
    flex: 1 1 100%;
  }
}

.bbf-form {
  max-width: 400px;
 /* min-width: 400px;*/
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 1rem;
  box-sizing: border-box;
  align-items: center;
}

.bbf-form select {
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #808285;
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  appearance: none;
  font-weight: 600;
  color: #000000;
  background-color: #fff;
}

.bbf-form select option {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: #000000;
}

.bbf-list-wrapper {
  max-width: 600px;
  margin: auto;
}

h3.bbf-tagline {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.bbf-links {
  padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    max-width: 900px;
    margin: 10px auto;
}

.bbf-links a {
  padding: 5px 0 5px 8px;
    border: 1px solid #cfcdcd;
    border-radius: 4px;
    background: #eef5ff;
    font-size: 12px;
    display: flex; 
    margin-top: 1px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
}

.bbf-button-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bbf-clear-btn {
  padding: 8px 16px;
  background-color: #2264ad;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.bbf-clear-btn:hover {
  background-color: #194a88;
}

.bbf-loader {
  width: 20px;
  height: 20px;
  border: 3px solid #ddd;
  border-top: 3px solid #2264ad;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bank-accordion {
  display: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
  margin: 15px auto;
}

/*
.bbf-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}
*/

.bank-link {
  flex: 1 1 calc(50% - 20px);
  text-decoration: none;
  color: #0a3b71;
  background: #eef5ff;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
  padding-left: 5%;
}
