#calibration-container,
#download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#calibration-download {
    background-color: #333;
    color: #ffffff;
    transition: background-color 0.3s ease;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
}

#calibration-download:hover {
    background-color: #555;
    cursor: pointer;
}

#editor-flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#editor-key-container,
#editor-container {
    display: flex;
    padding: 0px;
}

.editor-character {
    flex: 1;
    text-align: center;
    background-color: #a73d3d;
    color: #ffffff;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ffffff;
}

.editor-key {
    flex: 1;
    text-align: center;
    color: #ffffff;
    padding: 8px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ffffff;
}