.holo-buttons {
	display: flex;
	gap: 10px;
}
.actionBar, .holo-actionBar {
	background-color: #010101;
	
	border-top-color: #0F0F0F;
	border-bottom-color: #33B5E5;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
body {
	font-family: Arial, sans-serif;
	color: #ffffff;
	margin: 0;
	padding: 0;
	background: black;
	height: 100vh;
	overflow: auto;
	box-sizing: border-box;
}
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('https://static.ro-inc.xyz/BG3.jpeg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: blur(5px);
	z-index: -1;
	background-color: black;
	box-sizing: border-box;
}
.container {
	border: 3px solid cyan;
	padding: 20px;
	background: rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: center;
	border-radius: 8px;
	width: 90%;
	max-width: 750px;
	box-sizing: border-box;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
}
.container input, .container textarea {
	width: 100%;
	max-width: calc(100% - 20px);
	box-sizing: border-box;
	margin:10px;
	color: #fff;
}
input[type="file"]{
	padding:10px;
}
@media (max-width: 600px) {
	.container {
		width: 100%;
		max-width: 100%;
	}
}
.close {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}
.close:hover,
.close:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}
.error-dialog {
	border: 1px solid #d9534f;
}
.success-dialog {
	border: 1px solid #5bc0de;
}
.loading-dialog {
	border: 1px solid #cccccc;
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
}
.loading-header {
	background-color: #333333;
	border-color: #666666;
}
#progressWrapper {
	display: none;
	width: 100%;
	background-color: #e0e0e0;
}
#progressBar {
	width: 0%;
	height: 20px;
	background-color: #76c7c0;
}
.api-toggle {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.api-toggle label {
	margin-right: 10px;
}
/* Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes scaleIn {
	from { transform: scale(0.7); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}
iframe {
	border: none;
	overflow: hidden;
	scrollbar-width: none;
}
.modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
.modal-actions .button {
	padding: 10px 15px;
	min-width: 100px;
}
.modal{
	background: BLACK !important;
}