/* 🌐 Broker Grid Layout */
.fbr-broker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 🧾 Broker Card */
.fbr-card {
  width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  text-align: center;
  padding: 20px 10px 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fbr-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* 🔖 Featured Ribbon */
.fbr-ribbon {
  position: absolute;
  left: -40px;
  top: 10px;
  background: orange;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 50px;
  transform: rotate(-45deg);
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 🖼 Logo */
.fbr-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin: 10px auto;
  height: auto;
}

/* 💰 Deposit Info */
.fbr-deposit {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

/* 🧾 Broker Title */
.fbr-title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}

.fbr-title a {
  color: #111;
  text-decoration: none;
}

/* 🔥 Optional fire icon (if needed globally) */
.fbr-title a::before {
  content: "🔥 ";
  color: red;
}

/* ✅ Visit Button */
.fbr-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  background: #4ade80;
  color: white;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}

.fbr-btn:hover {
  background-color: #22c55e;
}

/* 🏷 Badge */
.fbr-badge {
  background: #ecfeff;
  color: #0e7490;
  font-size: 13px;
  margin: 10px auto 5px;
  padding: 5px 10px;
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  width: 90%;
}

/* 📊 Stats Row */
.fbr-stats {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 13px;
  margin-top: 10px;
  color: #6b7280;
}

/* 👍 Like Icon Hover */
.like-icon i {
  transition: transform 0.3s ease;
}
.like-icon:hover i {
  transform: scale(1.15);
}

/* ✅ Admin Action Buttons */
.fbr-action {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.btn-approve {
  background-color: #10b981;
  color: white;
  border: none;
}

.btn-unapprove {
  background-color: #f59e0b;
  color: white;
  border: none;
}

.btn-verify {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.btn-unverify {
  background-color: #ef4444;
  color: white;
  border: none;
}

.fbr-action:hover {
  opacity: 0.85;
}
