@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;700&display=swap');

/* input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }
input[type=number] { -moz-appearance:textfield; } */

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Rethink Sans', sans-serif;
}

html {
    background-color: #222;
    color: #fff;
}

.body-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
}

table {
    border-collapse: collapse;
    border: 2px solid #d1d1d1;
    border-radius: 10px;
    overflow: hidden;
}

td, th {
    position: relative;
    text-align: center;
    padding: 10px;
}

th {
    background-color: #111;
}

select {
    font-size: 16px;
}

.hidden {
    display: none;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.content-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.input {
    font-size: 16px;
    background-color: #222;
    border: solid #4e4e4e;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    width: 20vw;
    max-width: 200px;
    transition: all 0.3s;
}

.inputChiquito {
    max-width: 130px;
}

.input:hover {
    box-shadow: 0px 0px 10px #4e4e4e;
    background-color: #4e4e4e;
}

.input:focus {
    background-color: #4e4e4e;
    outline: none;
}

.btnInicio {
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
    padding: 5px 15px;
    background-color: #4e4e4e;
    color: #fff;
    cursor: pointer;
    border-radius: 7px;
    width: 50vw;
    max-width: 80px;
    transition: all 0.3s;
}

.btnInicio:hover {
    color: #fff;
    background-color: #0066ff;
    box-shadow: 0px 1px 10px #0066ff;
}

#group {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    color: #fff;
    background-color: #4e4e4e;
    border-radius: 7px;
    transition: all 0.3s;
    width: 20vw;
    max-width: 150px;
}

#group:hover {
    box-shadow: 0px 0px 10px #4e4e4e;
}

#group:focus {
    outline: none;
}

.btnEdit, .btnDelete {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: #4e4e4e;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btnEdit:hover {
    background-color: #0066ff;
    box-shadow: 0px 0px 10px #0066ff;
}

.btnDelete:hover {
    background-color: #ff3131;
    box-shadow: 0px 0px 10px #ff3131;
}

.btnPage {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background-color: #4e4e4e;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    fill: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.5s;
}

.btnPage:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 10px #4e4e4e;
}

/* --- -- --- -- --- -- --- --- -- --- -- --- -- --- */

