/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: #fff;
    padding: 2% 5%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
h2 {
    font-size: 24px;
    margin-top: 20px;
    transition: opacity 2s;
}

/* Form Styles */
#initStep, #inputStep {
    margin-bottom: 20px;
}

label {
    display: inline-block;
    width: 80px;
}

input[type="text"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

button {
    padding: 8px 16px;
    background-color: #5375ea;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1c3fbd;
}

/* Radio Button Styles */
input[type="radio"] {
    margin-right: 5px;
    vertical-align: middle;
}

/* Code and Pre Styles */
pre {
    background-color: rgba(0, 0, 0, 0.14);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow-x: auto;
}

#templateCopy, #mwMarkCopy {
    display: none;
}