/* css/popup.css */
/* Dashboard popup integration */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  animation: fadeIn 0.3s ease;
  pointer-events: all;
}

.popup-box {
  min-width: 280px;
  min-height: 80px;
  font-size: 1.1rem;
}

.popup-box {
  background: #221fbd;
  color: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  font-family: 'Times New Roman', Times, serif;
}

.popup-box.success { border-left: 6px solid #1fbd3f; }
.popup-box.error   { border-left: 6px solid #ef4444; }
.popup-box.info    { border-left: 6px solid #312bef; }
.popup-box.warning { border-left: 6px solid #f59e0b; }

.popup-btn {
  background: #0b6ad6;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.popup-btn:hover { background: #095bb5; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
