.card {
  background: #f3f4f5;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 25px;
  margin-bottom: 20px;
}

.prompt-container {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0;
  margin: 20px 0;
  position: relative;
  font-size: medium;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Prompt header */
.prompt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ddd;
  border-radius: 4px 4px 0 0;
}

.prompt-details {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.prompt-actions-top {
  display: flex;
  gap: 10px;
}

/* Copy buttons in prompt header */
.copy-prompt-btn,
.copy-markdown-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
}

.copy-prompt-btn:hover,
.copy-markdown-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333;
}

.copy-prompt-btn:active,
.copy-markdown-btn:active {
  transform: scale(0.95);
}

.copy-prompt-btn svg,
.copy-markdown-btn svg {
  width: 18px;
  height: 18px;
}

/* Prompt content area */
.prompt-content {
  background-color: white;
  padding: 20px;
  border-radius: 0 0 4px 4px;
  border: 1px solid #f5f5f5;
  border-top: none;
}

/* PRO badge */
.pro-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #4e6af6;
  color: white;
  font-size: 8px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* For mobile devices */
@media (max-width: 600px) {
  .prompt-header {
    padding: 0 0 10px 0;
  }
  
  .copy-prompt-btn,
  .copy-markdown-btn {
    padding: 10px;
  }
  
  .copy-prompt-btn svg,
  .copy-markdown-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .pro-badge {
    font-size: 9px;
    padding: 2px 5px;
  }
}

.header {
  margin-bottom: 16px;
}

.title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}

.description {
  color: var(--secondary-color);
  font-size: 16px;
  margin: 15px 0;
  max-width: 85ch;
  line-height: 1.6;
  font-size: medium;
}

.description p {
  margin-top: 0;
  color: #444;
}

.prompt-section {
  margin-bottom: 16px;
}

.prompt-heading {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.prompt-list {
  margin: 8px 0 12px 16px;
  padding-left: 20px;
}

.prompt-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* For placeholder text in brackets */
.placeholder {
  font-weight: bold;
}

/* Prompt action buttons */
.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}

.download-markdown-btn,
.download-standard-btn {
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.download-markdown-btn {
  background-color: #4e6af6;
  color: white;
  border: none;
}

.download-standard-btn {
  background-color: white;
  color: #4e6af6;
  border: 1px solid #4e6af6;
}

.download-markdown-btn:hover {
  background-color: #3a56e0;
}

.download-standard-btn:hover {
  background-color: #f5f7ff;
}

.download-markdown-btn:active,
.download-standard-btn:active {
  transform: translateY(1px);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .prompt-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .download-markdown-btn,
  .download-standard-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Pagination styles */
.prompt-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.page-numbers {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.page-numbers.current {
  background-color: #f5f5f5;
  font-weight: bold;
}
