body {
    font-family: Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1001;
    border-radius: 10px;
    overflow: hidden;
}

.popup-header {
    padding: 15px;
    background: #700f0f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-heading {
    font-size: 18px;
	color:#FFFFFF;
}

.popup-close {
    font-size: 20px;
    cursor: pointer;
}

.popup-body {
    padding: 15px;
}

.popup-footer {
    padding: 10px;
    background: #700f0f;
    text-align: right;
}

button {
    padding: 5px 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

button[type="button"] {
    background: #7e2626;
	border:2px solid #FFFFFF;
	border-radius:5px;
	box-shadow: 0px 6px 10px #293243;
    color: #fff;
	float:left;
}
button:hover{
transform: scale(1.05);
background: #430909;
}
#close-button {
    background: #9a5757;
	border:2px solid #FFFFFF;
	border-radius:5px;
	box-shadow: 0px 6px 10px #293243;
    color: #fff;
	
}
@media (max-width: 768px) {
  .popup {
    width: 90%;
	height:500px;
	overflow-y: scroll;
  }
}
/* Desktop view: 3-column layout */
@media (min-width: 769px) {
  .popup {
    width: 30%;
	overflow-y: auto;
  }
}
