/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content {
  background: white;
  padding: 25px;
  width: 350px;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  animation: popup 0.25s ease-out;
}

@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Close Button (X) */
.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

/* OK Button */
.ok-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.ok-btn:hover {
  background: #c0392b;
}

/* Modal Text */
.modal-text {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}   

.modal {
    color: #000;
    
}