.main-content {
    padding: 0 40px 0 40px;
}

.container {
    width: 95%;
    margin: 40px auto 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 16px;
    color: #333;
}
.feedback *:not(h2) {
  font-size: 18px;
}
.input {
    padding: 5px;
}
.submit {
  outline: none;
  background-color: #2B9C2E;
  color: white;
  border: none;
  border-radius: 5px;
  width: 60px;
  height: 30px;
  cursor: pointer;
}
label {
  cursor: pointer;
}
h1.title,
h2.title {
  margin-bottom: 10px;
}

.save {
  height: 30px;
  width: 200px;
  font-size: 15px;
  color: white;
  border: none;
  outline: none;
  border-radius: 25px;
  background-color: #8B1E3Fd0;
}


.accordion {
  width: 100%;
  background: none;
  border: none;
  padding: 1em;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border-left: 3px solid #2B9C2E;
  background-color: #f7f7f7;
}
.accordion:hover {
  background-color: #dadada;
}

.accordion.open {
    background-color: #f0f0f0;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion.open .accordion-icon {
  transform: rotate(180deg);
}
.accordion.open + .panel {
  border-top: 1px solid black;
}
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1em;
  background: #f9f9f9;
  border-left: 3px solid #2B9C2E;
  margin-bottom: 1em;
}

.panel::before,
.panel::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
}

.code-block {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1em;
    font-family: monospace;
}

.filename {
    background-color: #f0f0f0;
    padding: 0.5em 1em;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

pre {
    margin: 15px 0 0;
    padding: 1em;
    background-color: #fdfdfd;
    overflow-x: auto;
    line-height: 1.3;
}

.index {
  margin-top: 20px;
}
.link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
}