.menu {
	background-color: #7633a2;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#7633a2),to(#7633a2));
	background-image: -webkit-linear-gradient(top,#7633a2,#7633a2);
	background-image: -moz-linear-gradient(top,#7633a2,#7633a2);
	background-image: -ms-linear-gradient(top,#7633a2,#7633a2);
	background-image: -o-linear-gradient(top,#7633a2,#7633a2);
	background-image: linear-gradient(top,#7633a2,#7633a2);
	clear: both;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7633a2,endColorstr=#7633a2);
	margin: 0 auto;
}

.menu a:hover {
	background-color: #33855c;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#33855c),to(#99c2ad));
	background-image: -webkit-linear-gradient(top,#33855c,#99c2ad);
	background-image: -moz-linear-gradient(top,#33855c,#99c2ad);
	background-image: -ms-linear-gradient(top,#33855c,#99c2ad);
	background-image: -o-linear-gradient(top,#33855c,#99c2ad);
	background-image: linear-gradient(top,#33855c,#99c2ad);
	color: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33855c,endColorstr=#99c2ad);
}

.menu .current_page_item a,
.menu .current-menu-item a {
	background-color: #33855c;
}

.widget-wrapper {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background-color: #f9f9f9;
	border: 1px solid #33855c;
	border-radius: 4px;
	margin: 0 0 20px;
	padding: 20px;
}

a {
	color: #7633a2;
	text-decoration: underline;
}

#wrapper {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background-color: #fff;
	border: 1px solid #33855c;
	border-radius: 4px;
	clear: both;
	margin: 20px auto;
	padding: 0 20px 20px;
	position: relative;
}

.wp-caption {
	background: #33855c;
	background-color: #33855c;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#33855c),to(#99c2ad));
	background-image: -webkit-linear-gradient(top,#33855c,#99c2ad);
	background-image: -moz-linear-gradient(top,#33855c,#99c2ad);
	background-image: -ms-linear-gradient(top,#33855c,#99c2ad);
	background-image: -o-linear-gradient(top,#33855c,#99c2ad);
	background-image: linear-gradient(top,#33855c,#99c2ad);
	color: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33855c,endColorstr=#99c2ad);
	border: 1px solid #33855c;
	max-width: 96%;
	padding: 13px 10px 10px;
	text-align: center;
}

table, th, td {
	border: 1px solid black;
	border-collapse: collapse;
}

th, td {
	padding: 5px;
}

th {
	color: white;
	background-color: #7633a2;
}

td {
	text-align: center;
}

td.TableAttribute, th.TableAttribute {
	text-align: left;
}

//Styling for html preview of docs

.psfa-audit-preview {
  max-width: 900px;
  margin: 32px auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dfe7e2;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.psfa-audit-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #33855c;
}

.psfa-audit-header h2 {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.2;
  color: #1f1f1f;
}

.psfa-audit-header p {
  margin: 0;
  font-size: 16px;
  color: #5c5c5c;
}

.psfa-audit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.psfa-audit-step,
.psfa-audit-status,
.psfa-audit-footer {
  background: #f8fbf9;
  border: 1px solid #e1ece6;
  border-radius: 10px;
  padding: 18px;
}

.psfa-audit-step h3,
.psfa-audit-status h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
  color: #33855c;
}

.psfa-audit-step ul,
.psfa-audit-status ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.psfa-audit-step li,
.psfa-audit-status li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  line-height: 1.5;
  color: #1f1f1f;
}

.psfa-audit-step li:last-child,
.psfa-audit-status li:last-child {
  margin-bottom: 0;
}

.psfa-audit-step li::before,
.psfa-audit-status li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #33855c;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}

.psfa-audit-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.psfa-audit-status {
  margin-top: 18px;
}

.psfa-audit-footer {
  margin-top: 18px;
  background: #ffffff;
}

.psfa-audit-footer p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.psfa-audit-footer p:last-child {
  margin-bottom: 0;
}

.psfa-audit-footer a {
  color: #33855c;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .psfa-audit-preview {
    padding: 18px;
  }

  .psfa-audit-grid {
    grid-template-columns: 1fr;
  }

  .psfa-audit-header h2 {
    font-size: 24px;
  }
}
