/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sidebar */
.sidenav {
  height: 100%;
  width: 220px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.sidenav a {
  padding: 12px 20px;
  text-decoration: none;
  font-size: 18px;
  color: #f1f1f1;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  background-color: #575757;
  color: #fff;
}

/* Main content */
.content {
  margin-left: 240px; /* sidebar width + padding */
  padding: 20px;
}

/* Header styling */


.content h1 {
  color: #111;
  margin-bottom: 10px;
}
.content h2 {
  color: #222;
  margin-bottom: 10px;
}

.content h3 {
  color: #333;
  margin-bottom: 10px;
}

.content p {
  line-height: 1.6;
}

.content code {
    color:#333;
    line-height: 1.3;
}

/* Optional: light dark mode styling */
body {
  background-color: #f4f4f4;
}

/* Optional: responsive adjustments */
@media screen and (max-width: 768px) {
  .sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidenav a { text-align: center; }
  .content { margin-left: 0; }
}

.download-page h2,
.download-page p {
  text-align: center;
}

.subtitle {
  font-size: 1.2em;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 30px;
}

.download-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.download-card {
  text-align: center;
}

.os-icon {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.download-btn {
  display: inline-block;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid;
  transition: 0.3s ease;
}

.download-btn.win {
  border-color: #0078d7;
  color: #0078d7;
}

.download-btn.win:hover {
  background-color: #0078d7;
  color: white;
}

.download-btn.mac {
  border-color: #000;
  color: #000;
}

.download-btn.mac:hover {
  background-color: #000;
  color: white;
}

.auto-detect {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
}
.content h3 {
  text-align: center;
}