.wp-block-large img {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
}

.wp-block-large {
    overflow: visible !important;
}
.wp-block-group.alignfull.is-style-default {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.wp-block-columns.alignwide {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
/* Style filter fields */
.searchandfilter > div {
  margin-bottom: 1em;
}

/* Arrange filters in a row on wider screens */
@media (min-width: 768px) {
  .searchandfilter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .searchandfilter > div {
    flex: 1 1 200px;
  }
}

/* Style dropdowns */
.searchandfilter select,
.searchandfilter input[type="text"] {
  width: 100%;
  padding: 0.5em;
  font-size: 1em;
}
/* Grid for results */
.searchandfilter-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Style individual prompt cards */
.prompt-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Access tag styles */
.access-tag {
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 0.5rem;
  color: #555;
}
.copy-button {
  background-color: #3b82f6;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-button:hover {
  background-color: #2563eb;
}
.prompt-box {
  margin-left: 3rem;
  margin-right: 3rem;
}


/* Style the prompt box */
.prompt-box {
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  margin: 0 1rem 2rem 1rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  background-color: #fff !important;
}

/* Prompt box content spacing */
.prompt-box h2,
.prompt-box h3,
.prompt-box p {
  margin-bottom: 12px;
}

/* Hover effect for prompt box */
.prompt-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Copy button */
.copy-button {
  background-color: #3b82f6;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-button:hover {
  background-color: #2563eb;
}

/* Access label styling */
.access-tag {
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 0.5rem;
  color: #555;
}
.prompt-box {
  transition: transform 0.2s ease;
}
.prompt-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

