.app-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.app-modal {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
}
.dark .app-modal {
    background:  #111;
}

.app-modal-title {
  margin-top: 0;
  font-size: 1.4rem;
}

.app-modal-body {
  margin: 1rem 0;
  line-height: 1.4;
}

.app-modal-checkbox {
  display: block;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.app-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.app-modal-btn {
  background: #4CAF50;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.app-modal-btn:hover {
  background: #45A049;
}
