.outliny-button-container {
  margin: 20px 0;
  padding: 10px;
}

.outliny-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.outliny-button:hover {
  background-color: #0056b3;
}

/* Link style - renders as text link instead of button */
.outliny-link {
  display: inline;
  padding: 0;
  margin: 0;
  background: none;
  color: #007bff;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.outliny-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.outliny-link:focus {
  outline: none;
  text-decoration: underline;
}

.outliny-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 80%;
  max-height: 80vh;
  overflow-y: auto;
}

.outliny-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Shortcode specific styling */
.outliny-shortcode-buttons {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #f9f9f9;
}

.outliny-shortcode-buttons .outliny-button-container.shortcode-button {
  display: inline-block;
  margin: 5px;
  padding: 0;
}

.outliny-shortcode-buttons .outliny-button {
  display: inline-block;
  padding: 8px 16px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.outliny-shortcode-buttons .outliny-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.outliny-shortcode-buttons .outliny-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Group buttons styling */
.outliny-shortcode-buttons.group-buttons {
  border-left: 4px solid #667eea;
}

.outliny-shortcode-buttons.group-buttons::before {
  content: "Group Buttons";
  display: block;
  font-size: 12px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
