.bo-planner-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
}

.bo-planner-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.bo-planner-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.bo-planner-form select,
.bo-primary-btn {
  padding: 14px;
  font-size: 16px;
  min-height: 48px;
}

.bo-primary-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
}

.bo-planner-output {
  margin-top: 25px;
  padding: 15px;
  border: 1px solid #ddd;
}

.bo-plan-list li {
  margin-bottom: 14px;
}

.bo-editable {
  padding: 6px;
  border: 1px dashed #ccc;
  border-radius: 4px;
  cursor: text;
}

.bo-editable:focus {
  outline: none;
  border-color: #0073aa;
  background: #f9f9f9;
}

.bo-copy-btn {
  margin: 10px 0 15px;
  padding: 10px 14px;
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
}

.bo-primary-btn,
.bo-copy-btn {
  background: var(--bo-brand-blue) !important;
  border-color: var(--bo-brand-blue) !important;
  color: #fff !important;
}

.bo-primary-btn:hover,
.bo-copy-btn:hover {
  background: var(--bo-brand-blue-dark) !important;
  border-color: var(--bo-brand-blue-dark) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .bo-planner-wrapper {
    max-width: 95%;
  }
}
/* Highlight tool container */
.bo-tool-section {
  background: #f9fafb;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  margin-top: 20px;
}

/* Related tools grid */
.bo-related-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  margin: 15px 0 30px;
  padding-left: 0;
  list-style: none;
}

.bo-related-tools-grid li a {
  display: block;
  padding: 8px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  text-r-decoration: none;
}

.bo-related-tools-grid li a:hover {
  background: #eef6fb;
}

/* Tablet */
@media (max-width: 768px) {
  .bo-related-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .bo-related-tools-grid {
    grid-template-columns: 1fr;
  }
}
/* BeingOptimist plugin brand tokens. */
:root {
  --bo-brand-blue: #0878f9;
  --bo-brand-blue-dark: #075ab8;
}
