/* Pro-Docs Styles */
.pro-docs {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: 40px auto;
}
.pro-docs h2 {
  color: #6952f4;
  border-bottom: 2px solid #6952f4;
  padding-bottom: 10px;
}
.pro-docs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.pro-docs-tab {
  padding: 10px 20px;
  background: #f8f9fa;
  color: #6952f4;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.2s;
}
.pro-docs-tab i {
  font-size: 14px;
}
.pro-docs-tab.active, .pro-docs-tab:hover {
  background: #6952f4;
  color: white;
}
.pro-docs-tab.active i, .pro-docs-tab:hover i {
  color: white;
}
.pro-docs-panel {
  display: none;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
}
.pro-docs-panel.active {
  display: block;
}
.pro-docs-panel h3 {
  margin-top: 0;
  color: #6952f4;
}
.pro-docs-panel h3 i {
  font-size: 18px;
  margin-right: 10px;
}
.pro-docs-panel p {
  line-height: 1.6;
}
.pro-docs-panel a {
  color: #6952f4;
}
.pro-docs-panel a:hover {
  color: #5a47d9;
}
.pro-docs p a {
  color: #6952f4;
}
.pro-docs p a:hover {
  color: #5a47d9;
}

/* Additional styles for tiled view */
.pro-docs-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pro-docs-tile {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.pro-docs-tile h3 {
  color: #6952f4;
  margin: 0;
}
.pro-docs-tile:hover {
  transform: translateY(-5px);
}
.pro-docs-tile.active {
  background: #6952f4;
}
.pro-docs-tile.active h3 {
  color: white;
}
.pro-docs-product-content {
  margin-top: 40px;
}