.tiny-text-box {
    display: inline-block; /* or 'block' depending on your layout */
    padding: 2pt; /* Sets the space between text and border */
    border: 1px solid #ccc; /* Example border, similar to what buttons might have */
    border-radius: 4px; /* Gives the rounded corners similar to btn class */
    background-color: #4e73df; /* Example background color, similar to a btn class */
    color: #fff; /* Text color */
    text-align: center;
    /* Add other styling similar to btn class as needed */
}