﻿.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 */
	}
