body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f9;
    color: #333;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 60px;
}

.container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 20px 0;
}

.textarea-container {
    flex: 1;
    margin: 0 10px;
}

textarea {
    width: 100%;
    height: 400px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
}

button:hover {
    background-color: #0056b3;
}

.result-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin-top: 5px;
}

.output-column {
    flex: 1;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    white-space: pre-wrap;
    background-color: #fff;
    position: relative;
    padding-top: 5px;
}

.output-content {
    margin-top: 5px;
}

.copyButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 20px;
    cursor: pointer;
}

.copyButton:hover {
    background-color: #218838;
}

.instructions {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.instructions h2 {
    margin-bottom: 10px;
}

.instructions p {
    margin-bottom: 10px;
}

.instructions ol {
    margin-left: 20px;
}

.removed {
    background-color: #ffcccc;
}

.added {
    background-color: #ccffcc;
}

.stats {
    background-color: #f0f0f0;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.stats span {
    margin-right: 10px;
}

header, footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header h1 {
    margin-bottom: 5px;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.buttons-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}
