.container {
	max-width: 800px;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 1rem; /* 16px */
	padding: 2rem; /* 32px */
	display: flex;
	flex-direction: column;
}
.close {
	width: 100%;
	text-align: right;
	padding-bottom: 10px;
}
.close a {
	text-decoration: none;
	color: #777777;
}
.status-output p {
	text-align: center;
	color: #4b5563;
}
.ui-buttons {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem; /* 16px */
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.ui-buttons {
		flex-direction: row;
		gap: 1rem;
	}
}
.btn {
  border-radius: 100px;
  border: 0;
  width: 100%;
  max-width: 300px;
  padding: 10px 20px;
  font-size: 14px;
}
.btn-primary {
  background-color: #001665;
  color: #fff;
}
.btn-primary:hover {
  background-color: #000645;
}
.btn-secondary {
  background-color: #fff;
  border: 1px solid #001665;
  color: #001665;
}
.btn-secondary:hover {
  background-color: #ddd;
}
.prompt {
	margin-top: 1rem;
}
.hidden {
	display: none;
}
.progress-bar-container {
	margin-top: 1rem;
}
.progress-bar-labels {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.25rem;
}
.progress-bar-labels span {
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
}
.progress-bar {
	width: 100%;
	height: 20px;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 9999px;
	overflow: hidden;
	background-color: #e5e7eb;
}
.progress-bar::-webkit-progress-value {
	background-color: #4ade80; /* green-400 */
	transition: width 0.3s ease-in-out;
}
.progress-bar::-moz-progress-bar {
	background-color: #4ade80; /* green-400 */
}
.log-toggle {
	padding: 1rem 0;
	width: 100%;
	text-align: center;
	color: #777777;
	border-top: 1px solid;
}
.log-output {
	background-color: #111827; /* gray-900 */
	color: #86efac; /* green-400 */
	padding: 1rem; /* 16px */
	border-radius: 0.5rem; /* 8px */
	margin-top: 0.5rem;
	font-family: monospace;
	font-size: 0.875rem; /* 14px */
	overflow-y: auto;
}
.log-output p {
	margin: 0;
}
