body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    background-color: #008CBA;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .title {
    text-align: center;
    background-color: #007BFF;
    color: white;
    font-size: 36px; /* Increase font size for the title */
    padding: 20px 0; /* Increase padding for more height */
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white; /* Change background color to white */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    color: black; /* Change text color to black */
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #d3d3d3; /* Change hover and active background color to gray */
}

.content {
    padding: 160px 20px 20px; /* Adjust padding-top to account for the fixed header */
}

.form-container {
    justify-content: center;
    /* align-items: center; */
    margin-top: 150px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
}
.form-group {
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #007BFF;
}
.form-group textarea {
    resize: vertical;
    height: 200px;
}
.form-group button {
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.form-group button:hover {
    background-color: #0056b3;
}
.button-group {
    display: flex;
    justify-content: space-between;
}
.json-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}
.json-wrapper {
    display: flex;
    flex-direction: column;
    resize: vertical;
    width: 100%;
}
