.info-card-widget {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #00b517;
  background: linear-gradient(132deg, #e8ffeb, #ffffff);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
  border-left: 6px solid #00b518;
  margin-bottom: 2rem;
}

/* LEFT SECTION – 60% */
.info-card-widget-left {
  flex: 0 0 60%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* VERTICAL GROOVE LINE */
.info-card-widget-separator {
  width: 4px;
  border-right: 2px groove #00b517;
  margin-right: 20px;
  border-radius: 2px;
}

/* RIGHT SECTION – 40% */
.info-card-widget-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
}

/* NAME + ROLE + LOCATION */
.info-card-widget-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #007e10;
}

.info-card-widget-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.info-card-widget-location {
  font-size: 0.85rem;
  color: #64748b;
}

/* TABULAR SECTION */
.info-card-widget-table {
  border-radius: 12px;
  border: 1px solid #a5e7ad;
  background: #dcffe0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card-widget-row {
  display: flex;
  /*grid-template-columns: 150px 1fr;*/
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #00a515;
}

.info-card-widget-row:last-child {
  border-bottom: none;
}

.info-card-widget-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  position: relative;
  padding-right: 10px; /* space before colon */
  width: 25%;
}
.info-card-widget-label::after {
  content: ':';
  position: absolute;
  right: 0;
  font-weight: 700;
  color: #475569;
  padding-left: 6px; /* spacing after colon */
}
.info-card-widget-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  width: 75%;
}

/* PROFILE IMAGE */
.info-card-widget-right img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid #00b517;
  padding: 2px;
  max-height: 350px;
}

/* ACTION BUTTONS */
.info-card-widget-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 8px;
}

.info-card-widget-btn {
  width: auto;
  min-width: 12rem;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: 0.15s;
}

.info-card-widget-btn-primary {
  background: #00b517;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
  text-align: center;
}

.info-card-widget-btn-primary:hover {
  background: #17a2b8;
}
/*.info-card-widget-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.info-card-widget-btn-outline {
  background: white;
  border: 1px solid #94a3b8;
  color: #334155;
}

.info-card-widget-btn-outline:hover {
  background: #e0f2fe;
  transform: translateY(-2px);
} */

/* RESPONSIVE */
@media (max-width: 820px) {
  .info-card-widget {
    flex-direction: column;
    gap: 20px;
  }

  .info-card-widget-left {
    flex: 100%;
    padding-right: 0;
  }

  .info-card-widget-separator {
    display: none;
  }

  .info-card-widget-right {
    padding-left: 0;
    width: 100%;
  }
}

.floating-badge {
  position: relative;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(39, 174, 96, 0.35);
  animation: badge-float 4s ease-in-out infinite;
  gap: 6px;
}

/* ICON (Bell / Lightning) */
.badge-icon {
  font-size: 1rem;
  margin-right: 4px;
  animation: icon-pop 1.8s infinite;
}

/* Pulse dot */
.badge-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Smooth floating effect */
@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Dot pulse: opacity + scale + glow */
@keyframes pulse-dot {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
    box-shadow: 0 0 8px rgba(255, 255, 255, 1);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.9);
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.6);
  }
}

/* ICON animation */
@keyframes icon-pop {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}
.btn-gray.disabled_place_bid_btn {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
  border: 1px solid #ccc;
  cursor: no-drop;
  color: grey !important;
  font-size: 0.95rem !important;
  width: 12rem;
  padding-top: 9px;
}
a.view_bid_info {
  color: #fff;
}
