/* Simple Table Generator - Frontend & Editor styles */

.mce-content-body table,
.stg-table,
table {
	border-collapse: collapse;
	margin: 1em 0;
	width: 100%;
	max-width: 100%;
}

.mce-content-body table th,
.mce-content-body table td,
.stg-table th,
.stg-table td,
table th,
table td {
	border: 1px solid #ccc;
	padding: 8px 12px;
	text-align: left;
	vertical-align: top;
}

.mce-content-body table th,
.stg-table th,
table th {
	background-color: #f5f5f5;
	font-weight: 600;
}

.mce-content-body table tr:nth-child(even) td,
.stg-table tr:nth-child(even) td,
table tr:nth-child(even) td {
	background-color: #fafafa;
}

/* Make tables responsive on small screens */
@media screen and (max-width: 600px) {
	.mce-content-body table,
	.stg-table,
	table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
