/* Add your custom CSS styles here */
body {
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

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

.error-message {
    color: red;
}

button {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.conversion-result {
    display: flex;
    justify-content: space-between;
}

.dockerfile-section, .akash-sdl-section {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f2f2f2;
    margin: 0 10px;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

button[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
}

button#copy-button {
    margin-top: 10px;
}
