/* Full-screen overlay to block game input */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Buy menu container */
.buymenu {
	position: relative;
	background-color: #1e1e1e;
	padding: 30px;
	border-radius: 10px;
	color: #ffffff;
	width: 500px;
	max-width: 90%;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	pointer-events: all;
}

/* Close button */
.close-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #e74c3c;
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2em;
	width: 30px;
	height: 30px;
	pointer-events: all;
}

/* Slots container */
.slots {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Individual slot */
.slot {
	background-color: #2a2a2a;
	padding: 15px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Weapon options container */
.weapon-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Weapon option */
.weapon-option {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* Weapon button */
.weapon-button {
	background-color: #3e8e41;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	transition: background-color 0.3s ease;
}

.weapon-button:hover {
	background-color: #45a049;
}

.weapon-cost {
	position: absolute;
	right: 60px;
}

/* Buy ammo button */
.buy-ammo-button {
	background-color: #3498db;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	transition: background-color 0.3s ease;
}

.buy-ammo-button:hover {
	background-color: #2980b9;
}

/* Purchased info */
.purchased-info {
	font-size: 4.9em;
	color: #3498db;
}
