/*
========================================================
Utilities for the RYCA Solutions Framework
========================================================
*/


/*Tabs Tips*/
.tab-container {
	max-width: 800px;
	margin: 20px auto;
	font-family: Arial, sans-serif;
}

.tab-buttons {
	display: flex;
	border-bottom: 1px solid #ccc;
}

.tab-button {
	padding: 10px 20px;
	cursor: pointer;
	background: #f1f1f1;
	border: 1px solid #ccc;
	border-bottom: none;
	margin-right: 2px;
	border-radius: 4px 4px 0 0;
	transition: background 0.3s;
}

.tab-button.active {
	background: #fff;
	font-weight: bold;
}

.tab-button:hover {
	background: #e0e0e0;
}

.tab-content {
	border: 1px solid #ccc;
	padding: 30px 20px 20px;
	background: #fff;
	border-radius: 0 0 4px 4px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

/*Tool Tips*/
.helpTooltipHeadResult{
	background-color: transparent;
	border-radius: 12px;
	border: none;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.formRow.head div.helpToolTip,
.helpToolTip {
	background-color: #e8e8e8;
	border-radius: 12px;
	padding: 10px;
	width: 320px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;

	.header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 4px;
		width: 100%;
	}

	.title {
		font-weight: bold;
		font-size: 16px;
		color: #333;
	}

	.close-btn {
		background: none;
		border: none;
		font-size: 20px;
		color: #666;
		cursor: pointer;
		padding: 0;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.close-btn:hover {
		color: #333;
	}

	.video-thumbnail {
		background-color: #b8b8b8;
		border-radius: 8px;
		height: 60px;
		width: 100%;
		margin-bottom: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #888;
	}

	.content {
		width: 100%;
		font-size: 12px;
		color: #333;
		margin-bottom: 10px;
		font-weight: normal;
	}

	.watch-btn {
		background-color: #5a5a5a;
		color: white;
		border: none;
		border-radius: 6px;
		padding: 8px 24px;
		font-size: 12px;
		cursor: pointer;
		width: 100%;
		font-weight: 500;
	}

	.watch-btn:hover {
		background-color: #4a4a4a;
	}
}

