#aipd-box {
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: linear-gradient(to right, #f9fafb, #f0f2f5);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  margin-top: 25px;
  max-width: 600px;
}

#aipd-box h2.hndle {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

#aipd-generate {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#aipd-generate:hover {
  background: linear-gradient(90deg, #6366f1, #3b82f6);
}

#aipd-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #10b981;
}


/* Description Preview Container */
/* Results Container */
#aipd-results-container {
    background: #f6f7f7;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.aipd-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.aipd-results-header h3 {
    margin: 0;
    color: #1d2327;
    font-size: 14px;
    font-weight: 600;
}

/* Results Content */
#aipd-results-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #1d2327;
}

/* Status Messages */
#aipd-status {
    border-radius: 3px;
    font-size: 13px;
}

#aipd-status.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #00a32a;
}

#aipd-status.error {
    background-color: #f8d7da;
    color: #842029;
    border-left: 4px solid #d63638;
}

#aipd-status .dashicons {
    vertical-align: middle;
    margin-right: 5px;
}

/* Copy Button */
#aipd-copy-btn .dashicons {
    vertical-align: middle;
    margin-right: 3px;
}