html {
    height: 100vh;
}

body {
    background-color: rgb(138, 172, 152);
    height: 100%;
}

.heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

.container {
    margin: 0 auto;
    padding: 20px;
}

.table {
    width: 100%;
}

.t-row {
    background-color: black;
    height: 40px;
}

.row {
    background-color: white;
}

.t-head {
    color: white;
    user-select: none;
    cursor: pointer;
}

.button {
    border-radius: 20px;
    border: none;
    background-color: rgb(30, 99, 76);
    padding: 10px;
    cursor: pointer;
    height: 40px;
    color: white;
}

.input {
    border-radius: 20px;
    display: block;
    padding: 10px;
    border: none;
    background-color: white;
}

.title-centered {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delete {
    width: 200px;
}

.loader {
    color: #1c4c5b
}

.loader,
.loader:after {
    box-sizing: border-box;
}

.loader {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.loader:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}