.notif-top-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.notif-top-box {
  background: #0f1f2a;
  color: #fff;
  padding: 18px;
  margin: 14px;
  width: 95%;
  max-width: 360px;
  border-radius: 12px;
  text-align: center;
  transform: translateY(-150%);
  animation: slideDown 0.45s ease-out forwards;
  pointer-events: all;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid #1f354d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

@keyframes slideDown {
  from { transform: translateY(-150%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.notif-title {
  font-size: 16.5px;
  font-weight: 600;
  color: #ffcd00;
  margin-bottom: 6px;
}

.notif-desc {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 16px;
}

.notif-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.notif-actions button {
  padding: 8px 14px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-decline {
  background: #2b4c6f;
  color: #ccc;
}

.btn-decline:hover {
  background: #3b5c7f;
  transform: scale(1.03);
}

.btn-allow {
  background: #ffcd00;
  color: #111;
  font-weight: bold;
  box-shadow: inset 0 0 0 1px #0003;
}

.btn-allow:hover {
  background: #ffd94a;
  transform: scale(1.06);
}
