.iltf-container {
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    display: flex;
}

.iltf-message-box {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1rem 1rem;
    border: solid black 2px;
}

.iltf-message-header {
    display: flex;
    justify-content: center;
}

.iltf-highlight-text {
    font-weight: bold;
}

.iltf-actions {
    display: flex;
    justify-content: flex-end;
}

.iltf-action {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

.iltf-message {
    padding: 4rem;
}

.iltf-modal {
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    justify-content: center;
    align-items: center;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.iltf-modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: fit-content;
}