html,
body {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}
@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
  }
}
.prompt-button {
  position: relative;
  z-index: 10;
}
.prompt-button .wp-block-button__link {
  position: relative;
  display: inline-block;
}
.prompt-button .prompt-tooltip {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 0;
  background-color: rgba(0,0,0,0.9);
  color: white;
  padding: 15px;
  border-radius: 5px;
  width: 300px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
  z-index: 20;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  white-space: normal;
}
.prompt-button:hover .prompt-tooltip {
  display: block;
}
.prompt-button .prompt-tooltip::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border: 5px solid transparent;
  border-top-color: rgba(0,0,0,0.9);
}
.wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(5,1fr) !important;
  gap: 20px !important;
  max-width: 95% !important;
  margin: 0 auto !important;
  padding: 0 10px !important;
  align-items: start !important;
}
.wp-block-column {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.wp-block-column .wp-block-image {
  margin: 0 auto !important;
}
.wp-block-column .wp-block-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 1400px) {
  .wp-block-columns {
    grid-template-columns: repeat(4,1fr) !important;
  }
}
@media (max-width: 1100px) {
  .wp-block-columns {
    grid-template-columns: repeat(3,1fr) !important;
  }
}
@media (max-width: 768px) {
  .wp-block-columns {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 15px !important;
  }
  .prompt-button .prompt-tooltip {
    width: 220px;
    font-size: 11px;
    max-height: 160px;
  }
}
@media (max-width: 480px) {
  .wp-block-columns {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .wp-block-column {
    flex-basis: 100% !important;
  }
}
