/* popup-styles.css */

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
    display: none;
    z-index: 999;
}

#popup-content {
    display: flex;
    flex-direction: column;
	align-items: center;
}

#popup-form {
	text-align: center;
}

#popup-form p {
  	font-weight: bold;
	margin-block-end: 0px;
	text-align: center;
	font-size: 24px;
}

#popup-form input {
    margin-bottom: 10px;
    padding: .5rem 1rem;
	border: 1px solid #f4f4f4;
  	background-color: #fbfbfb;
  	border-radius: 8px;
}

#popup-form button {
  padding: .5rem 1rem;
  background: #262626;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%; 
  border-radius: 8px;
  margin-bottom: 10px;
}

#closebutton {
  background: #ffedee !important;
  color: red !important;
  width: 100% !important;
}
