.text-right {
    justify-self: right;
    text-align: right;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid {
    display: grid;
    /*grid-template-columns: repeat(2, 4fr);*/
    grid-template-columns: 80% 18%;
    gap: 20px;
    justify-content: center;
    align-content: center;
    height: 100%;
}

.card {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 10px;
}

.indent {
    padding-left: 1rem;
}

.dbl-indent p{
    padding-left: 2rem;
}

.btn {
    background-color: transparent;
    color: #333;
    cursor: pointer;
}

.btn:hover {
    transform: scale(0.98);
    color: #777;
    outline-color: #333;
}