.wpr-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
}
.wpr-block {
	background-color: #eee;
	border: 1px solid #ccc;
	padding: 10px;
	text-align: center;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
}
.wpr-block:hover {
	background-color: #ccc;
	color: white;
}
.wpr-block.selected {
	background-color: blue;
	color: white;
}
#wpr-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
}
#wpr-modal img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}

.number_table table, td {
  border: 1px solid black;
}


/* The Modal (background) */
#price_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
 #price_modal .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 40%;
}

/* The Close Button */
#price_modal .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#price_modal .close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}