/* Container */
.branch-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

/* Card */
.branch-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 8px;
}

/* Card Header */
.branch-card-header {
  /* background-color: var(--theme-color); */
  color: var(--theme-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-title {
  color: var(--theme-color);
  font-size: 1.8rem;
  font-weight: 600;
}

/* Card Body */
.branch-card-body {
  padding: 1rem;
  padding-top: 0px;
}

.branch-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Grid Layout */
.branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .branch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Info Box */
.info-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.info-box:hover {
  background-color: #f0f8ff;
  border-color: var(--theme-color);
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 0.4rem;
  display: block;
}

.info-value {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  word-break: break-word;
}

/* Row with copy button */
.info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  border-radius: 6px;
}

.copy-btn:hover {
  background: #f0f0f0;
}

.icon-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.copy-btn.copied .icon-svg {
  filter: hue-rotate(120deg) brightness(1.2); /* simple green effect */
}

/* Toast styles */
.toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #323232;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 10px 16px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}
