/* compare.css */
body {
    background-color: #242527;
    color: #999;
    font-family: "Merriweather", serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

h1 {
    color: #A09185;
    margin-bottom: 20px;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 80%;
    gap: 20px;
}
div {
    text-align: left!important;
}
.box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #74BA59;
}

textarea,
.diff-output {
    flex: 1;
    background-color: #1F1F1F;
    color: #ccc;
    border: 1px solid #444;
    padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    border-radius: 8px;
    font-family: inherit;
    overflow-y: auto;
    box-shadow:rgba(58, 194, 124, 0.46) 1px 1px 4px 0px, rgb(0, 0, 0) 3px 3px 7px 1px inset;
}

textarea:focus {
    outline: 0px solid #74BA59;
    box-shadow:rgba(57, 191, 117, 1) -1px -1px 5px -1px ,rgba(58, 194, 124, 0.46) 1px 1px 4px 0px ,rgb(0, 0, 0) 3px 3px 7px 1px inset ;
}

.diff-output {
    white-space: pre-wrap;
}

.diff-del {
    background-color: #5c2b2b;
    color: #ffcccc;
    text-decoration: line-through;
}

.diff-add {
    background-color: #2b5c36;
    color: #ccffdd;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 20px;
    background-color: #74BA59;
    color: #1F1F1F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #96D09F;
}