.top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #eef7ff;
	height: 10vh;
}

.logo {
	display: flex;
	align-items: center;
	margin-left: 30px;
}

.logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.guarantee {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #333;
	margin-right: 100px;
}

#guarantee-icon {
	width: 45px;
	height: 45px;
}

.guarantee-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.actions {
	display: flex;
	height: 100%;
}

.action-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}

.admin-demo {
	background-color: #7cc100;
}

.plugin-page {
	background-color: #2a70b8;
}

.action-icon {
	color: #ffffff;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
}

.close-topbar-btn {
	color: black;
}
.close-topbar-btn > img {
	width: 18px;
	height: 18px;
	padding: 2px;
	border: 2px solid black;
	border-radius: 4px;
}

.txt-small {
	font-size: 13px;
	color: rgb(109, 109, 109);
}

.txt-large {
	font-size: 20px;
	font-weight: 500;
}


/* Modal styles */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	justify-content: center;
	align-items: center;
	z-index: 9999999;
}

.modal {
	background-color: #fff;
	border-radius: 12px;
	padding: 60px 60px;
	max-width: 500px;
	text-align: center;
	position: relative;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.modal .close-btn {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	padding: 0px!important;
	top: 10px;
	right: 10px;
	font-size: 24px;
	color: white;
	border: none;
	border-radius: 9999px;
	padding: 8px 16px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: white;
}

.modal .loader {
	margin: 20px auto;
	width: 30px;
	height: 30px;
	border: 4px solid #cfd8dc;
	border-top: 4px solid #2a70b8;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.modal h2 {
	font-size: 20px;
	margin: 20px 0 10px;
	color: #333;
}

.modal p {
	font-size: 14px;
	color: #444;
	margin: 5px 0;
}

.sandbox-waiting {
	font-weight: 600;
}

/* Make top-bar responsive */
@media (max-width: 1024px) {
	.top-bar {
		flex-direction: column;
		align-items: center;
		text-align: center;
		height: auto;
	}
	.logo {
		margin-left: 10px;
		margin-bottom: 10px;
	}
	.actions {
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
	}
	.guarantee {
		margin: 0 0 10px 10px;
	}
	.action-btn {
		width: 100%;
		justify-content: center;
		padding: 10px 15px;
	}
}

#modal-close-image {
	width: 20px;
	height: 20px;
	color: white;
}
/* Adjust modal for smaller screens */
@media (max-width: 600px) {
	.modal {
		width: 90%;
		padding: 30px 20px;
	}
	.modal .close-btn {
		top: 5px;
		right: 5px;
		font-size: 12px;
	}
	.modal h2 {
		font-size: 18px;
	}
	.modal p {
		font-size: 13px;
	}
	.loader {
		width: 24px;
		height: 24px;
		border-width: 3px;
	}
}