﻿.tab-control {
	width: 100%;
	font-family: Arial, sans-serif;
	box-sizing: border-box;
}

.tab-header {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid #dcdcdc;
}

.tab-button {
	background: #f3f3f3;
	border: 1px solid #dcdcdc;
	border-bottom: none;
	padding: 10px 18px;
	cursor: pointer;
	transition: background-color .2s ease;
	border-radius: 6px 6px 0 0;
}

	.tab-button:hover {
		background: #e9e9e9;
	}

	.tab-button.active {
		background: #fff;
		font-weight: bold;
		position: relative;
		top: 1px;
	}

.tab-content {
	border: 1px solid #dcdcdc;
	background: white;
	padding: 20px;
	box-sizing: border-box;
	min-height: 100px;
	min-width: 700px;
}

.tab-panel {
	display: none;
}

	.tab-panel.active {
		display: block;
	}


/*.tab-container {
	width: 600px;
	margin: 0 auto;*/ /* Center the container */
	/*border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;*/ /* To keep corners rounded */
	/*padding-bottom: 20px;*/ /* Add some space for the buttons */
/*}

.tabs {
	display: flex;
	border-bottom: 1px solid #ccc;
}

	.tabs button {
		padding: 5px 10px;*/ /* Adjust the padding to fit the text */
		/*cursor: pointer;
		background: #ddd;
		border: none;
		outline: none;
		margin: 0;*/ /* Remove margins if any */
		/*font-size: 14px;*/ /* Adjust font size if needed */
		/*flex: 1;
		text-align: center;
	}

		.tabs button.active {
			background: #ccc;
		}

.tab-content {
	display: none;
	padding: 10px;*/ /* Add padding to the content */
/*}

	.tab-content.active {
		display: block;
	}

.buttons {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

	.buttons button {
		padding: 5px 10px;
		margin: 0 5px;
		cursor: pointer;
		background: #ddd;
		border: 1px solid #ccc;
		border-radius: 4px;
		flex-basis: min-content;*/ /* Ensure buttons take up only the space they need */
	/*}*/
