/* Guide-specific styles only */
.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h1 {
    color: var(--dark);
    margin-bottom: 15px;
}

.guide-subtitle {
    color: #666;
    font-size: 1.2em;
}

/* Section styling */
.guide-section {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guide-section h2 {
    color: #2196F3;
    border-bottom: 2px solid #2196F3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.guide-section h3 {
    color: #333;
    margin: 25px 0 15px;
}

/* Content boxes */
.example-box {
    background: #f5f9ff;
    border-left: 4px solid #2196F3;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.checklist-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Code blocks */
pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.4;
    margin: 15px 0;
}

/* Tables */
.guide-table {
    width: 100%;
    margin: 20px 0;
}

/* Navigation */
.guide-navigation {
    text-align: center;
    margin: 60px 0 40px;
}

.guide-navigation .button {
    text-decoration: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .guide-section {
        padding: 15px;
        margin-bottom: 30px;
    }

    pre {
        font-size: 13px;
    }
}


/* Navigation Bar */
.nav-bar {
  background-color: #4a148c;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-button {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-weight: 500;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-button.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-button {
    margin: 5px;
    font-size: 14px;
    padding: 8px 15px;
  }
}
