nav {
    height: 100%;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: black;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
}

.crud-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.add-tool {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5em;
}

.crud-table {
    width: 100%;
    margin-top: 5em;
    margin-bottom: 5em;
}

.login-container {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-self: center;
    align-items: center;
    justify-content: center;
}

.login-form {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: 400px;
    padding-top: 20%;
}

.icono {
    display: flex;
    align-self: center;
    margin-bottom: 3em;

}

/*diseño responsive*/
@media screen and (max-width: 768px) {
    .login-form {
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        width: 90%;
        height: 400px;
        padding-top: 20%;
    }
}

.form-floating {
    margin-top: 2em;
    margin-bottom: 2em;
}

table {
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #bdc3c7;

}

.crud-table {
    overflow: auto;
}

/*user grid*/

.user-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.data-profile,
.notes-card,
.recent-card,
.test {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.data-profile {
    padding-bottom: 40%;
}