.slug-generator {
    margin: 20px auto;
    text-align: center;
}

.slug-generator-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.input-section,
.output-section {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bordered-section {
    border: 1px solid #ccc;
    border-radius: 2px;
}

/* Input field */
.slug-generator-container textarea {
    width: 100%;
    height: 220px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    resize: none;
    height: 80px;
    border: none;
    box-shadow: none !important;
}

/* Whitespace Output */
#slug-generator-output {
    font-family: monospace;
    white-space: pre;
    text-align: left;
    background: #f8f8f8;
    padding: 10px;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 1px solid #ccc;
    overflow-x: auto;
    margin: 0;
}

/* Statistics section */
.text-stats {
    text-align: left;
    font-size: 14px;
    width: 100%;
    padding: 5px;
    background: #f1f1f1;
    margin-top: 5px;
    display: flex;
    gap: 14px;
}

.text-stats p {
    margin: 5px 0;
}

/* Removal Type Selection */
.slug-generator-options {
    margin-top: 10px;
    text-align: left;
}

.slug-generator-options select {
    padding: 8px;
    font-size: 14px;
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .slug-generator-container {
        flex-direction: column;
    }

    .input-section,
    .output-section {
        width: 100%;
    }
}

.buttons {
    margin-top: 10px;
    text-align: left;
}

.slug-generator-remover button {
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.slug-generator-remover button:hover {
    background: #005177;
}

.slug-generator-options .row {
    display: flex;
    gap: 20px;
}

.slug-generator-options .column {
    flex: 1;
}

.slug-generator-options .option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slug-generator-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}