/* Content Page Styles */
.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #ff4a17;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #e63900;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Basic table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  background-color: #1e1e1e;
  color: #ff4a17;
}

/* Code blocks */
pre {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 4px;
  overflow-x: auto;
  font-family: monospace;
}

/* Blockquotes */
blockquote {
  margin: 20px 0;
  padding: 10px 20px;
  border-left: 4px solid #ff4a17;
  background-color: #1e1e1e;
}

/* Lists */
ul, ol {
  margin: 15px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Links */
a {
  color: #ff4a17;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e63900;
  text-decoration: underline;
}

/* Print styles */
@media print {
  body {
    color: #000;
    background-color: #fff;
  }
  
  .back-button {
    display: none;
  }
}