/* General Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 80%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff; /* White background like acceleratelearning.com */
  color: #333;
  padding: 20px 0;
  border-bottom: 1px solid #e7e7e7;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes logo and title apart */
}

.site-header .logo {
  height: 40px; /* Adjust as needed */
  width: auto;
}

.site-header h1 {
  margin: 0;
  font-size: 1.8em;
  font-weight: 600; /* Similar to acceleratelearning.com */
  color: #0079c2; /* Accelerate Learning blue */
}

/* Main Content */
main.container {
  padding-top: 30px;
  padding-bottom: 30px;
  flex-grow: 1;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.content-section {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.content-section h2 {
  color: #0079c2; /* Accelerate Learning blue */
  margin-top: 0;
}

.content-section h3 {
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-section p {
  margin-bottom: 15px;
}

.content-section code {
  background-color: #eef;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: monospace;
}

.share-info {
  background-color: #e6f3fa; /* Light blue background */
  border-left: 4px solid #0079c2; /* Blue accent border */
  padding: 10px 15px;
  margin-top: 20px;
  font-size: 0.9em;
}

.dev-info {
  background-color: #fff3cd; /* Light yellow for dev info */
  border-left: 4px solid #ffeeba; /* Yellow accent */
  padding: 10px 15px;
  margin-top: 20px;
  font-size: 0.9em;
  border-radius: 4px;
}

.dev-info h4 {
  margin-top: 0;
  color: #856404; /* Darker yellow for text */
}

/* File List */
.file-list {
  list-style: none;
  padding: 0;
}

.file-item {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-item:hover {
  background-color: #f1f1f1;
}

.item-icon {
  margin-right: 10px;
  font-size: 1.2em;
}

.item-name {
  flex-grow: 1;
}

.item-size {
  min-width: 100px;
  text-align: right;
  font-size: 0.9em;
  color: #555;
  margin-right: 15px;
}

.download-link {
  background-color: #0079c2; /* Accelerate Learning blue */
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background-color: #005f99; /* Darker blue */
}

.folder-indicator {
  font-size: 0.9em;
  color: #777;
  min-width: 80px; /* Align with download button space */
  text-align: right;
}

/* Footer */
.site-footer {
  background: #333; /* Dark footer */
  color: #bbb;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9em;
}

.site-footer p {
  margin: 5px 0;
}

.site-footer a {
  color: #00aaff; /* Light blue for links in footer */
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Utility */
.text-center {
  text-align: center;
}

/* Responsive adjustments (optional, basic) */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header h1 {
    margin-top: 10px;
    font-size: 1.5em;
  }

  .file-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-size, .download-link, .folder-indicator {
    margin-top: 5px;
    text-align: left;
    min-width: auto;
  }
}
