.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: start;
}

.modal-text {
    color: azure;
    text-align: center;

    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.input {
    padding: 2px 10px;
    border-radius: 1rem;
    border: none;
    box-shadow: 1px 1px 3px 1px rgb(110, 129, 129);

    height: 2rem;

    font-size: 1rem;
}

.modal {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    text-align: center;

    margin-top: 20%;
}

.button-area {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    margin-top: 1.0rem;
}

.button-done {
    background-color: azure;
    border: none;
    border-radius: 0.5rem;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.8rem;
    width: 5rem;
    text-align: center;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.button-done:hover {
    background-color: #7fafdf;
}

.button-cancel {
    background-color: rgb(236, 84, 84);
    border: none;
    border-radius: 0.5rem;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.8rem;
    width: 5rem;
    text-align: center;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.button-cancel:hover {
    background-color: rgb(226, 166, 166);
}
