/* /wp-content/themes/ghanaroll/assets/css/modal.css */
:root {
  --ghana-red: #EF3340;
  --ghana-yellow: #FFD100;
  --ghana-green: #009739;
  --black: #000000;
  --white: #FFFFFF;
}

/* Modal Styles */
body .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

body .modal.active {
  display: flex;
}

/* Modal Content */
body .modal .modal-content {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal Close Button */
body .modal .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  line-height: 1;
  padding: 5px;
}

body .modal .modal-close i {
  font-size: 18px;
}

body .modal .modal-close:hover {
  color: var(--ghana-green);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  body .modal-content {
    width: 95%;
    padding: 15px;
  }
}