
.listitemdiv {
	margin-top: 3px;
	margin-bottom: 3px;
}

.listitem {
	margin-left: 12px;
	min-width: 250px;
	display: inline-block;
}

.tabeditcontainer {
	width: 80%;
	padding: 15px;
	border-radius: 6px;
}
@media (max-width: 768px) {
	.tabeditcontainer {
		width: 100%;
	}
}

.container {
	max-width: 1400px;
}

.tab-content h2 {
	margin-left: 5px;
}

.tabs {
	margin-top: 1rem;
	margin-bottom: 1rem;
	background-color: #a2c3d3;
	border-radius: 6px;
}

.tabs-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid #ddd;
}

.tab-link {
	margin-right: 0.25rem;
}

.tab-link-anchor {
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	color: #4b5563; /* text-gray-600 */
	font-weight: 600;
	transition: all 0.2s ease;
}

.tab-link-anchor:hover {
	color: #2563eb; /* text-blue-600 */
}

.tab-link-anchor.active {
	color: #2563eb; /* text-blue-600 */
	border-bottom: 2px solid #2563eb; /* border-blue-600 */
}

.tab-link-anchor.inactive {
	color: #4b5563; /* text-gray-600 */
}

.tab-content {
	margin-top: 1rem;
	background-color: #d4f5ff;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

th {
	background-color: #f2f2f2;
}

button {
	cursor: pointer;
}

form div {
	margin-bottom: 1rem;
}

form label {
	display: block;
	margin-bottom: 0.5rem;
}

form input, form textarea, form select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	max-width: 500px;
}

.editrecordform label {
	display: inline-block;
	width: 110px;
}

.hidden {
	display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
	.tabs-list {
		flex-direction: column;
	}
	
	.tab-link {
		margin-right: 0;
		margin-bottom: 0.25rem;
	}
	
	.tab-link-anchor {
		padding: 0.75rem 1rem;
		border-bottom: 1px solid #ddd;
	}
	
	.tab-link-anchor.active {
		border-bottom: 2px solid #2563eb;
	}
}



