.generator-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.form-panel {
    width: 49%;
}

.schema-panel {
    width: 49%;
}

#local-business-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

#local-business-form input, 
#local-business-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#local-business-form h3 {
    margin-top: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#add-day-btn {
    margin-top: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

#add-day-btn:hover {
    background-color: #218838;
}

.opening-hours-day {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.opening-hours-day select,
.opening-hours-day input {
    margin-right: 10px;
}

.remove-day-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}

.schema-output-container {
    position: relative;
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 10px;
    border-radius: 5px;
    height: calc(100vh - 150px); /* Adjust height as needed */
    overflow: auto;
    box-sizing: border-box;
}

#schema-output {
    white-space: pre-wrap;
    word-wrap: break-word;
}

#copy-schema-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

#copy-schema-btn:hover {
    background-color: #0056b3;
}