/* Meduvita — dashboard re-engagement banner for inactive students */
#mv-reengage-banner {
  display: none;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.98) 0%, rgba(254, 243, 199, 0.92) 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
  font-family: 'Sora', sans-serif;
  animation: mvReengageIn 0.35s ease;
}
#mv-reengage-banner.mv-reengage-show {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
@keyframes mvReengageIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mv-reengage-ic {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.mv-reengage-body { flex: 1; min-width: 0; }
.mv-reengage-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.25rem;
}
.mv-reengage-text {
  font-size: 0.78rem;
  color: #78350f;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}
.mv-reengage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mv-reengage-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.mv-reengage-btn:hover { transform: translateY(-1px); }
.mv-reengage-btn-primary {
  background: #0d9488;
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}
.mv-reengage-btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: #92400e;
  border: 1px solid rgba(146, 64, 14, 0.2);
}
.mv-reengage-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #92400e;
  opacity: 0.55;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1;
}
.mv-reengage-close:hover { opacity: 1; }

@media (max-width: 640px) {
  #mv-reengage-banner.mv-reengage-show {
    flex-direction: column;
  }
}
