body {
	font-family: Arial, sans-serif;
	font-size: 20px;
}
.textInput {
	width: 100%;
	padding: 8px;
	font-size: 18px;
	box-sizing: border-box;
}
button {
	background-color: #7f7fd5;
	/*background-color: #fafafa;
	background-color: #fff;
	color: #ffffff;*/
	color: #333;
	border: 2px solid #6a63bf;
	border-radius: 5px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 5px;

}
button:disabled,
button[disabled]{
	color: #999;
}
.buttonSecondary {
	/*
	background-color: #E0E0E0;
	color: #303030;
	border: 2px solid #D0D0D0;
	*/
	background-color: #ffff;
	color: #333;
	border: 2px solid #999;
}
a {
	color: #000000;
	font-weight: bold;
}
.loginBox {
	padding: 10px;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 300px;
	height: 410px;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.applicationBox {
	position: fixed;
	margin: auto;
	top: 60px;
	bottom: 80px;
	left: 5px;
	right: 5px;
	text-align: center;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px;
	max-width: 600px;
}
.footerBox {
	position: fixed;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 10px;
	text-align: center;
	max-width: 600px;
}
.listItem {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 15px;
	background-color: #fafafa;
	text-align: left;
}
.activeItem {
	padding: 10px;
	border: 1px solid #b8b8b8;
	border-radius: 5px;
	box-shadow: 0 0 7px #9EB8F0;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 15px;
	background-color: #fafafa;
	text-align: left;
}
.collapsing {
	transition-duration:.10s;
}
.alert-small {
  margin-bottom: 1px;
  height: 30px;
  line-height:30px;
  padding:0px 5px;
}


.drop-zone.dragover {
    border-color: #007bff;
}

.drop-zone p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

  .pagination-controls button {
  	margin: 0 5px;
  }

  .pagination-controls span {
  	margin: 0 5px;
  }
#loading-spinner {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.7);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}



/* Base widget styling */
altcha-widget {
  display: flex !important;
  align-items: stretch !important;
  justify-content: start !important;
  position: relative !important;
  min-height: 60px !important;
}

/* During loading: Hide checkbox, show spinner centered */
.altcha[data-state="verifying"] .altcha-checkbox,
.altcha.loading .altcha-checkbox {
  display: none !important;
}

.altcha[data-state="verifying"] .altcha-label,
.altcha.loading .altcha-label {
  display: none !important;
}

.altcha[data-state="verifying"]::after,
.altcha.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Ensure verified state shows checkbox */
.altcha[data-state="verified"] .altcha-checkbox {
  display: block !important;
}

.altcha[data-state="verified"] .altcha-label {
  display: block !important;
}

/* Make checkbox bigger */
.altcha-checkbox input[type="checkbox"] {
  width: 20px !important;  /* Increase size */
  height: 20px !important;
  transform: scale(1.5);  /* Or use larger values for bigger */
  margin: 1em !important;  /* Space from text */
}

/* Ensure checkbox and label are inline */
.altcha-main {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;  /* Align to left */
}

.altcha-label {
  margin-left: 10px !important;  /* Space after checkbox */
  font-size: 16px !important;  /* Adjust text size if needed */
} */
