#small-text-generator {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#input-text, .output {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    resize: none;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#input-text:focus, .output:focus {
    border-color: #80bdff;
    box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

.output {
    background-color: #f8f9fa;
    color: #495057;
    cursor: default;
}

#buttons button {
    margin: 5px;
    transition: all 0.2s ease-in-out;
}

#buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#counters {
    margin-top: 10px;
    font-size: 14px;
}
