.admin::after {
    content: "";
    display: table;
    clear: both;
}

a {
    text-decoration: none;
}

.admin {
    width: 100%;
}

textarea {
    resize: none;
    width: 256px;
    height: 128px;
}

.form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f1f1f1;
    z-index: 1001;
}

.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

.form-container input, .form-container textarea {
    background-color: #ddd;
    outline: none;
}

.form-popup .info .button, .admin .edit .button {
    width: 32px;
    height: 32px;
    float: right;
}

.button {
    background-color: #F0F0F0;
    border-radius: 10px;
    margin: 2%;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.button a {
    color: black;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.create {
    grid-column: 1;
    width: 50%;
    float: left;
}

.edit {
    grid-column: 2;
    width: 100%;
    justify-content: flex-end;
    display: flex;
}

.green {
    background-color: #21EE21;
}

.red {
    background-color: #EE2121;
}

.blue {
    background-color: rgb(23,87,128);
}