@use 'variables.scss' as *;

// Shared look for AdPresso's custom data tables (used on the Statistics page
// and other dashboards that need the same table appearance).
@mixin table-base {
	width: 100%;
	background: $color-white;
	border-spacing: 0;
	color: $color-text;
	border-bottom: 0.4em solid $color-accent;
	margin-bottom: 2em;

	th {
		border-bottom: 0.4em solid $color-accent;
		font-weight: 500;
	}

	td, th {
		padding: 2em;

		a {
			color: $color-text;
			padding: 0;
			display: inline;
		}
	}

	td {
		border-bottom: 0.12em solid $color-divider;
	}
}
