.quick-heading-box {
  background: white;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.quick-heading-box .header-row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.quick-heading-box .heading {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 15px;
  margin: 0;
  border-top-left-radius: 8px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 80px;
  text-align: center;
}

.quick-heading-box .heading::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 10px solid #2a5298;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
}

.quick-heading-box .subheading {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  padding: 10px 15px;
  flex-grow: 1;
  text-align: left;
}

.quick-heading-box table {
  width: 100%;
  margin: 15px 0 12px 0;
}

.quick-heading-box table th,
.quick-heading-box table td {
  padding: 4px 15px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
}

.quick-heading-box .inspiration {
  text-align: right;
  color: var(--light-blue);
  font-size: 14px;
  padding: 0 15px 15px 15px;
}

.quick-heading-box .inspiration a {
  color: var(--light-blue);
  text-decoration: none;
}

.quick-heading-box .inspiration a:hover {
  text-decoration: underline;
}
