.layout {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin-top: 4rem;
}

.editorCard {
  width: 100%;
}

#jsonArea {
  width: 100%;
  min-height: 45vh;
  resize: vertical;
  font-family: monospace;
  font-size: 15px;
}

.padding {
    height: 50vh;
    width: 100%;
}

.toolbar {
    margin-bottom: 1rem;
}

.message-container {
    padding-left: 5%;
    padding-right: 5%;
}

.message-text {
    font-size: 2.5rem;
}

.message-text-small {
    font-size: 1.5rem;
}

.body-content {
  margin-top: 10rem;
  margin-bottom: 2rem;
  margin-left: 20%;
  margin-right: 20%
}

.mode-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 10px auto;
    margin-top: 15rem;
}

.mode-option {
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
}

.mode-option:hover {
    background: #f0f0f0;
}

.mode-option.active {
    background: #4a90e2;
    color: #fff !important;
    border-color: #4a90e2;
}
