.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 0;
  height: 100%;
  color: #ececec;
  font-family: Inter, sans-serif;
}

.info-section h3 {
  margin: 0;
  font-size: 2.25rem;
  text-align: center;
}

.info-description {
  margin: 0;
  color: #cfcfcf;
  text-align: center;
}

.info-card {
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  flex: 1;
}

.info-card h4 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.keybind-cnt {
  height: 100%;
  overflow-y: hidden;
}

.keybind-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
}

.keybind-table th {
  padding: 12px;

  font-size: 15px;
  font-weight: 600;
}
.keybind-table .keybind-th-left {
  text-align: left;
}
.keybind-table .keybind-th-right {
  text-align: right;
}

.keybind-table td {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.keybind-table tr {
  overflow-y: auto;
  border-bottom: 2px solid rgba(255, 255, 255, 0.03);
}

.keybind-table td:last-child {
  text-align: right;
  font-weight: bold;
  color: #2472c8;
}

.setting-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.setting {
  margin: 18px 0;
}

.setting label {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 14px;
}
