/** @format */

.loading-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	animation: spin 2s linear infinite;
}

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

	100% {
		transform: rotate(360deg);
	}
}

.swal2-html-container {
	height: 70px;
}


.image1 {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.h2 {
	text-align: center;
	background-color: #c1292a;
}

.pad {
	width: 500px;
	height: 400px;
}

table {
	border-collapse: collapse;
	width: 100%;
	border: 2px solid #000;
	/* Border for the table */
}

th,
td {
	border: 1px solid #000;
	/* Border for table cells */
	padding: 10px;
	/* Optional: Adds padding to cells */
	text-align: left;
	/* Optional: Aligns text within cells */
}

.labelGroup {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.icon {
	width: 40px; /* Example size */
	height: 40px;
	fill: #000; /* Default color */
	cursor: pointer;
	margin-bottom: 10px;
}

.icon.mic.active {
	fill: #f00; /* Active color */
}

#apiResult {
	max-width: 600px;
	margin: 0 auto;
}

.apiResult {
	max-width: 600px;
	margin: 0 auto;
	display: block;
	text-align: end;
}

#loadingMessage {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	margin-top: 150px;
}

#copyButton {
	display: none;
}

.lds-dual-ring {
	display: inline-block;
	width: 80px;
	height: 80px;
	margin: 0 auto;
}
.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid rgb(0, 0, 0);
	border-color: rgb(0, 0, 0) transparent rgb(0, 0, 0) transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#plan-form {
	display: grid;
	grid-template-columns: auto 1fr;
}

#assessment-form {
	display: grid;
	grid-template-columns: auto auto 1fr;
}

#objective-form {
	display: grid;
	grid-template-columns: auto 1fr;
}