/*
 * style for error messages
 */
.qtpm-chart-disable {
  color: #1d0909;
  font-size: 16px;
  text-align: center;
  margin-top: 20%;
}

/* Loader Container */
.qtpm-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

/* Rounded Loader Icon */
.qtpm-rounded-loader {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Hide loader */
.qtpm-loader-hidden {
  display: none;
}

/* style for dateduration */
.qtpm-chart-select-duration {
  display: flex;
  align-items: center;
  gap: 0px 9px;
}
.qtpm-chart-select-duration label select {
  border: 1px solid rgb(229, 231, 235);
  background-color: unset;
  padding: 9px 25px;
  line-height: 14px;
  background-size: 15px 15px !important;
}

.qtpm-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 30px 0px 0px;
}

.qtpm-chart-main-container {
  display: none;
}

.qtpm-chart-disable {
  display: none;
}

#qtpm-chart-device,
#qtpm-chart-duration {
  border-radius: 7px;
}

.qtpm-chart-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  width: 40px;
  font-size: 16px;
  height: 32px;
  border: 1px solid rgb(229, 231, 235);
}

#qtpm-custom-duration {
  align-items: center;
  clear: both;
  display: none;
  flex-direction: row;
  float: inline-end;
  margin-top: 10px;
}
#qtpm-custom-duration input {
  width: 150px;
}

#qtpm-date-error {
  clear: both;
  color: #ff3535;
  float: inline-end;
  font-weight: 700;
  margin-right: 78px;
  margin-top: 5px;
}

/* Style for chart container */
.qtpm-chart-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.qtpm-score-container,
.qtpm-overview-container {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.qtpm-score-container.mobile,
.qtpm-overview-container.mobile {
  display: none;
}

.qtpm-score-box {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 24px;
  position: relative;
  box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
}
.qtpm-score-box .qtpm-chart {
  display: flex;
  margin-top: 20px;
}
.qtpm-score-box .qtpm-chart .qtpm-chart-canvas {
  width: 100%;
  height: 350px;
  position: relative;
}
.qtpm-score-box .qtpm-chart .qtpm-chart-canvas .qtpm-chart-messege {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* style for suggestion-box */
.qtpm-suggestion-box,
.qtpm-general-suggestions {
  border-radius: 10px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 22px 24px;
  margin: 12px 20px 0px 20px;
  position: relative;
  box-shadow: 0px 4px 39px 9px rgba(69, 159, 132, 0.09);
}
.qtpm-suggestion-box h3,
.qtpm-general-suggestions h3 {
  margin: 0px 0px 18px 0px;
  font-size: 18px;
  line-height: 18px;
  color: #23262F;
  font-weight: bold;
}

.qtpm-icon-yes {
  color: rgb(47, 169, 122);
  font-size: 17px;
}

.qtpm-icon-no {
  color: rgb(224, 40, 40);
  font-size: 19px;
}

.qtpm-icon-warn {
  color: #E3CA0D;
  font-size: 17px;
}

.qtpm-alert-item,
.qtpm-general-item {
  display: flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  color: rgb(43, 54, 116);
  text-align: justify;
  margin-top: 15px;
  position: relative;
  cursor: pointer;
}

.qtpm-alert-item span,
.qtpm-general-item span {
  margin-right: 5px;
  font-size: 17px;
  height: 15px;
  width: 18px;
}

.description {
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

/* style for tooltip */
.description[data-tooltip]:hover::after,
.description[data-tooltip]:hover::before {
  opacity: 1;
}

.description[data-tooltip]::after,
.description[data-tooltip]::before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.description[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  background: black;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 10;
  left: 0;
  top: -33px;
}

.description[data-tooltip]:hover::before {
  top: -5px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

/* style for chart overview*/
.qtpm-overview-box {
  padding: 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  font-family: "PlusJakartaSans-SemiBold", sans-serif;
}

.qtpm-overview-box h3,
.qtpm-score-box h3 {
  margin: 0 0 15px;
}

.qtpm-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.qtpm-overview-item {
  border-radius: 10px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 16px;
  position: relative;
  box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
}

.qtpm-overview-item p {
  margin: 0;
}

.qtpm-overview-content {
  display: flex;
  justify-content: space-between;
}

h1.qtpm-score-number {
  font-weight: bold;
  font-size: 36px;
  padding: 12px 0px 20px 0px;
  line-height: 36px;
}

.qtpm-overview-top p,
h1 {
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 17px;
  text-transform: capitalize;
}

.overview-icon-positive,
.overview-icon-negative {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
  min-width: 50px;
  min-height: 50px;
}

.overview-icon-positive {
  color: rgb(47, 169, 122);
  background-color: rgba(47, 169, 122, 0.2);
}

.overview-icon-negative {
  color: rgb(180, 40, 40);
  background-color: rgba(224, 40, 40, 0.2);
}

.qtpm-icon-performance {
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qtpm-negative {
  color: rgb(224, 40, 40);
  margin-right: 5px;
  transform: scaleX(-1);
}

.qtpm-positive {
  color: rgb(47, 169, 122);
  margin-right: 5px;
}

/**
 * Applies styles for the chart container when the screen width is less than or equal to 768px.
 */
@media screen and (max-width: 768px) {
  .qtpm-dashboard-header {
    flex-direction: column;
    margin: 0;
  }
  .qtpm-chart-container .qtpm-chart {
    width: 100%;
    height: 350px;
    position: relative;
  }
  .qtpm-chart-container .qtpm-chart .qtpm-chart-messege {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
}
/* Media Queries for Tablet and Mobile */
@media (max-width: 768px) {
  .qtpm-chart-container {
    display: flex;
    flex-direction: column;
  }
  .qtpm-score-container {
    order: 2;
  }
  .qtpm-overview-container {
    order: 1;
  }
  .qtpm-score-box,
  .qtpm-overview-box {
    min-height: 250px;
  }
  .qtpm-overview-grid {
    grid-template-columns: 1fr;
  }
  .qtpm-icon-performance {
    font-size: 40px;
  }
  .qtpm-overview-item {
    padding: 10px;
    margin-bottom: 10px;
  }
  .qtpm-chart-select-duration {
    align-items: center;
    display: flex;
    float: right;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .qtpm-alert {
    width: 270px;
  }
}
@media (max-width: 344px) {
  .qtpm-alert {
    width: 240px;
  }
}
/**
 * Styles for the system information wrapper.
 */
.qtpm-system-info-container {
  align-items: stretch;
  display: flex;
  gap: 0px 20px;
  flex-wrap: wrap;
}

#qtpm-get-latest-info {
  margin-bottom: 20px;
}

.qtpm-system-info-wrapper {
  box-shadow: 0px 0px 1px 0px #000000;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  padding: 10px 15px 15px;
  margin-bottom: 20px;
  /**
   * Styles for the system information table wrapper.
   */
}
.qtpm-system-info-wrapper .qtpm-system-info-title {
  font-size: 15px;
  font-weight: bold;
  margin: 5px 0px 10px;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background-color: unset;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table thead {
  position: sticky;
  top: -1px;
  z-index: 999;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table tr:nth-child(odd) {
  background-color: #ffffff;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table td,
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table th {
  overflow-wrap: anywhere;
  padding-left: 10px;
  position: relative;
  vertical-align: middle;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table th:first-child {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  width: 1%;
}
.qtpm-system-info-wrapper .qtpm-system-info-table-wrapper table td:before {
  content: ":";
  position: absolute;
  left: 2px;
  top: calc(50% - 10px);
}

/**
 * Styles for the system information plugin.
 */
#qtpm-system-info-plugin .qtpm-system-info-table-wrapper,
#qtpm-system-info-cron .qtpm-system-info-table-wrapper {
  max-height: 400px;
  overflow: auto;
}
#qtpm-system-info-plugin .qtpm-system-info-table-wrapper table tr:nth-child(odd),
#qtpm-system-info-cron .qtpm-system-info-table-wrapper table tr:nth-child(odd) {
  background-color: #ffffff;
}
#qtpm-system-info-plugin .qtpm-system-info-table-wrapper table th,
#qtpm-system-info-cron .qtpm-system-info-table-wrapper table th {
  font-weight: unset;
  text-align: left;
  width: auto;
}
#qtpm-system-info-plugin .qtpm-system-info-table-wrapper table td:before,
#qtpm-system-info-cron .qtpm-system-info-table-wrapper table td:before {
  content: unset;
}

#qtpm-system-info-cron .dashicons {
  height: 18px;
  width: 18px;
  font-size: 18px;
  margin-right: 5px;
}
#qtpm-system-info-cron .qtpm-cron-callback {
  font-size: 12px;
}

/**
 * Styles for the metrics section.
 */
.qtpm-metrics {
  margin-top: 20px;
  /**
   * Styles for the metrics container.
   */
}
.qtpm-metrics .qtpm-metrics-title {
  font-size: 22px;
  margin: 10px 0;
}
.qtpm-metrics .qtpm-metrics-container {
  display: flex;
  gap: 20px;
  /**
   * Styles for individual metric containers.
   */
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-container {
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 1px 0px #000;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto 30px;
  padding: 10px;
  width: 20%;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-container .qtpm-metric-icon {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  box-shadow: 0px 0px 1px 0px #000;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-container .qtpm-metric-value {
  grid-column-start: 2;
  font-size: 22px;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-pass .qtpm-metric-icon {
  background: #00cc66;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-pass .qtpm-metric-value {
  color: #00cc66;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-fail .qtpm-metric-icon {
  background: #ff3333;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-fail .qtpm-metric-value {
  color: #ff3333;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-average .qtpm-metric-icon {
  background: #ffaa33;
}
.qtpm-metrics .qtpm-metrics-container .qtpm-metric-average .qtpm-metric-value {
  color: #ffaa33;
}

/**
 * Styles for the metric filter.
 */
.qtpm-metricfilter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px;
  gap: 5px;
}
.qtpm-metricfilter [name=matricfilter] {
  display: none;
}
.qtpm-metricfilter label {
  border-radius: 5px;
  padding: 1px 4px 2px;
  text-decoration: underline;
  cursor: pointer;
}
.qtpm-metricfilter label.active {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/**
 * Styles for the audit section.
 */
.qtpm-audit {
  margin-bottom: 20px;
}
.qtpm-audit .qtpm-audit-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qtpm-audit .qtpm-audit-heading .qtpm-audit-title {
  font-size: 22px;
  margin: 10px 0;
}
.qtpm-audit .qtpm-audit-accordion > div {
  border: 1px solid #c3c4c7;
  margin-bottom: 2px;
}
.qtpm-audit .qtpm-audit-accordion a .dashicons {
  text-decoration: none;
}
.qtpm-audit .qtpm-audit-accordion a .dashicons {
  text-decoration: none;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading {
  font-weight: 600;
  margin: 0;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger {
  align-items: center;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1em 3.5em 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .qtpm-audit-icon {
  border-radius: 100%;
  box-shadow: 0 0 1px 0 #000;
  height: 15px;
  width: 15px;
  margin-right: 5px;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .title {
  pointer-events: none;
  font-weight: 600;
  flex-grow: 1;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .badge {
  padding: 0.1rem 0.5rem 0.15rem;
  color: #2c3338;
  font-weight: 600;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .icon {
  border: solid #50575e;
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-70%) rotate(45deg);
  width: 0.5rem;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .blue {
  border: 1px solid #72aee6;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .orange {
  border: 1px solid #72aee6;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-heading .red {
  border: 1px solid #e65054;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-pass .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .qtpm-audit-icon {
  background: #00cc66;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-pass .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .badge {
  color: #00cc66;
  border: 1px solid #00cc66;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-fail .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .qtpm-audit-icon {
  background: #ff3333;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-fail .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .badge {
  color: #ff3333;
  border: 1px solid #ff3333;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-average .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .qtpm-audit-icon {
  background: #ffaa33;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-average .qtpm-audit-accordion-heading .qtpm-audit-accordion-trigger .badge {
  color: #ffaa33;
  border: 1px solid #ffaa33;
}
.qtpm-audit .qtpm-audit-accordion .qtpm-audit-accordion-trigger[aria-expanded=true] .icon {
  transform: translateY(-30%) rotate(-135deg);
}
.qtpm-audit .qtpm-audit-accordion-panel {
  background: #fff;
  padding: 10px 10px 10px 40px;
}
.qtpm-audit .qtpm-audit-accordion-panel p {
  margin-top: 0px;
}

.qtpm-metrics-gauge .qtpm-metrics-gauge-title {
  font-size: 22px;
  margin: 10px 0;
}
.qtpm-metrics-gauge .qtpm-metrics-gauge-container {
  width: 150px;
  position: relative;
}
.qtpm-metrics-gauge .qtpm-metrics-gauge-container .gauge-overall {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
}
.qtpm-metrics-gauge .qtpm-metrics-gauge-container .gauge-overall > span:first-child {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #abd;
  color: #fff;
  font-size: 32px;
}

.qtpm-pagespeed-device-tab {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  margin: 10px;
}
.qtpm-pagespeed-device-tab [name=qtpm_pagespeed_device] {
  display: none;
}
.qtpm-pagespeed-device-tab label {
  border-radius: 5px;
  padding: 5px 7px;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}
.qtpm-pagespeed-device-tab label.active {
  background: #000;
  color: #fff;
  text-decoration: none;
}

#qtpm-pagespeed-mobile-container {
  display: none;
}

/**
 * Styles for CURL info
 */
.qtpm-curl-info {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.qtpm-curl-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/**
 * Styles for tooltip
 */
.qtpm-tooltip {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  display: none;
  z-index: 1000;
  font-size: 12px;
  max-width: 200px;
}

.qtpm-button-container {
  position: relative;
}

.qtpm-button-container:hover .qtpm-tooltip {
  display: block;
}

/**
 * Styles for displaying cURL data.
 */
#qtpm-curl-display {
  margin-top: 15px;
  /**
   * Styles for badge.
   */
  /**
   * Styles for cURL data.
   */
}
#qtpm-curl-display .qtpm-curl-data-header {
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#qtpm-curl-display .qtpm-badge-container {
  margin-right: 35px;
}
#qtpm-curl-display .qtpm-badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-weight: bold;
  border-radius: 0.25em;
  margin-right: 0.5em;
}
#qtpm-curl-display .qtpm-badge-primary {
  background-color: #007bff;
  color: #fff;
}
#qtpm-curl-display .qtpm-badge-danger {
  background-color: #dc3545;
  color: #fff;
}
#qtpm-curl-display .qtpm-badge-secondary {
  background-color: #6c757d;
  color: #fff;
}
#qtpm-curl-display .qtpm-count {
  border-radius: 35%;
  padding: 0px 6px;
  margin-left: 5px;
}
#qtpm-curl-display .qtpm-lazy-load {
  font-size: 10px;
}
#qtpm-curl-display .qtpm-curl-data {
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  padding: 5px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #eaeaea;
}
#qtpm-curl-display .qtpm-curl-data .qtpm-curl-data-display {
  margin-top: 5px;
}
#qtpm-curl-display .qtpm-curl-data h2 {
  cursor: pointer;
  margin: 10px 0;
}
#qtpm-curl-display .qtpm-curl-data h3 {
  margin: 5px 0px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
}
#qtpm-curl-display .qtpm-curl-data .qtpm-accordion-container {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#qtpm-curl-display .qtpm-curl-data ul {
  list-style-type: none;
  padding: 0;
}
#qtpm-curl-display .qtpm-curl-data ul li {
  margin-bottom: 5px;
}
#qtpm-curl-display .qtpm-curl-data ul li strong {
  font-weight: bold;
  margin-right: 5px;
}
#qtpm-curl-display .qtpm-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}
#qtpm-curl-display .qtpm-accordion-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1.2em;
  font-weight: bold;
}
#qtpm-curl-display .qtpm-resource {
  display: none;
}
#qtpm-curl-display .qtpm-resource-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
#qtpm-curl-display .qtpm-resource-table th,
#qtpm-curl-display .qtpm-resource-table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
}
#qtpm-curl-display .qtpm-resource-table th:nth-child(2),
#qtpm-curl-display .qtpm-resource-table td:nth-child(2) {
  width: 20%;
}
#qtpm-curl-display .qtpm-resource-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
#qtpm-curl-display .qtpm-resource-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
#qtpm-curl-display .qtpm-resource-table tbody tr:hover {
  background-color: #ddd;
}
#qtpm-curl-display .qtpm-resource-table a {
  text-decoration: none;
  color: #007bff;
}

/**
 * Styles for button container.
 */
.qtpm-curl-button-container {
  display: inline-block;
}
.qtpm-curl-button-container .button {
  margin: 0 5px;
}

#qtpm-collapse-button {
  float: right;
}

.qtpm-progress_bar {
  display: none;
}

.qtpm-progress_bar_item {
  margin: 1.2rem 0;
}

.qtpm-item_label,
.qtpm-item_value {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.qtpm-item_value {
  font-weight: 400;
}

.qtpm-item_bar {
  position: relative;
  height: 1rem;
  width: 100%;
  background-color: #000;
  border-radius: 4px;
}
.qtpm-item_bar .qtpm-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 1rem;
  margin: 0;
  background-color: #f50045;
  border-radius: 4px;
  transition: width 100ms ease-in-out;
}

@font-face {
  font-family: "Plus Jakarta Sans", sans-serif;
  src: "./fonts/PlusJakartaSans-Regular.ttf";
}
/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
body {
  background: rgba(240, 253, 250, 0.1019607843);
  margin: 0;
  padding: 0;
}

.qtpm-tab-content {
  display: none;
}

.qtpm-hide {
  display: none;
}

.qtpm-show {
  display: block;
}

.wrap > h2:first-child {
  font-weight: bold;
}

.site-info {
  font-weight: 400;
  margin: 5px 0 20px;
}

/* Custom Navigation Wrapper */
.qtpm-nav-wrapper {
  display: flex;
  gap: 10px;
  position: relative;
  padding-bottom: 0;
  width: calc(100% - 10px);
}
.qtpm-nav-wrapper::after {
  content: "";
  background: #ccc;
  bottom: 0;
  height: 1px;
  position: absolute;
  right: 0;
  width: calc(100% - 5px);
}

.qtpm-tab-button {
  align-items: center;
  align-self: start;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  transition: color 0.3s, background-color 0.3s;
}
.qtpm-tab-button.active {
  background: rgba(240, 253, 250, 0.4);
  border: 1px solid #ccc;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.qtpm-tab-button span.dashicons {
  margin-right: 8px;
  pointer-events: none;
  vertical-align: middle;
}
.qtpm-tab-button:hover {
  background-color: rgba(240, 253, 250, 0.4);
}

/* Responsive styling */
@media (max-width: 768px) {
  .qtpm-nav-wrapper {
    flex-wrap: wrap;
    gap: 5px 0px;
    justify-content: space-around;
  }
  .qtpm-tab-button {
    font-size: 12px;
    margin-bottom: 0px;
    padding: 8px 11px;
  }
  .qtpm-tab-content h2 {
    text-align: center;
  }
}
/* Accordion style */
.qtpm-accordion {
  border: 1px solid #c3c4c7;
}
.qtpm-accordion .qtpm-accordion-heading {
  border-top: 1px solid #c3c4c7;
  font-weight: 600;
  margin: 0;
}
.qtpm-accordion .qtpm-accordion-heading:first-child {
  border-top: none;
}
.qtpm-accordion .qtpm-accordion-heading .qtpm-accordion-trigger {
  align-items: center;
  background: #fff;
  border: 0;
  color: #2c3338;
  cursor: pointer;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  margin: 0;
  min-height: 46px;
  padding: 10px 50px 10px 20px;
  position: relative;
  text-align: left;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  width: 100%;
}
.qtpm-accordion .qtpm-accordion-heading .title {
  flex-grow: 1;
  font-weight: 600;
  pointer-events: none;
}
.qtpm-accordion .qtpm-accordion-heading .badge {
  color: #2c3338;
  font-weight: 600;
  padding: 2px 8px 3px;
}
.qtpm-accordion .qtpm-accordion-heading .badge.blue {
  border: 1px solid #72aee6;
}
.qtpm-accordion .qtpm-accordion-heading .icon {
  border: solid #50575e;
  border-width: 0 2px 2px 0;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-70%) rotate(45deg);
  width: 8px;
}
.qtpm-accordion .qtpm-accordion-heading .qtpm-accordion-trigger[aria-expanded=true] .icon {
  transform: translateY(-30%) rotate(-135deg);
}
.qtpm-accordion .qtpm-accordion-panel {
  background: #fff;
  margin: 0;
  padding: 16px 20px;
}

/* Styling for the container of cron frequency fields */
#qtpm-cron-frequency-fields-container {
  display: flex;
}
#qtpm-cron-frequency-fields-container > div {
  margin-right: 10px;
}/*# sourceMappingURL=style.css.map */