.vue-input * {
    box-sizing: border-box;
}

.vue-input table {
    width: 100%;
}

.vue-input td,
.vue-input th {
    padding: 0.1em 0.5em;
    border: 1px gray solid;
    height: 2em;
}

.vue-input td {
    cursor: pointer;
}

.vue-input th.editable {
    cursor: pointer;
}

.vue-input td.active,
.vue-input th.active {
    padding: 0;
}

.vue-input table {
    table-layout: fixed;
}

.vue-input input {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0.1em calc(0.5em - 2px);
}

.vue-input .pagination {
    display: flex;
    justify-content: flex-end;
}

.vue-input .pagination-item {
    padding: 0.2em 0.7em;
    border: 2px #95a5a6 solid;
    border-radius: 3px;
    background: #95a5a6;
    cursor: pointer;
    margin-left: 0.2em;
    color: white;
}

.vue-input .pagination-dots {
    padding: 0.2em 0.7em;
    margin-left: 0.2em;
}

.vue-input .pagination-item.active {
    background: #2c3e50;
    font-weight: bold;
}

.vue-input .delete-button {
    cursor: pointer;
    color: gray;
    float: right;
}

.vue-input .delete-button:hover {
    color: rgb(177, 20, 20);
}