#empty-text {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font: -apple-system-body;
    color: rgba(60, 60, 67, 0.6);
}

.container,#unsubscribed-container {
    margin: 14px;
}

#unsubscribed-container {
    padding-left: 14px;
}

#header-container {
    margin-bottom: 30px;
}

#cancel-container {
    margin-top: 30px;
}

#cancel-container > .table {
    margin-bottom: 10px;
}

.container > .heading-4 {
    padding-left: 14px;
    padding-bottom: 4px;
}

.table-icon {
    height: 65px;
    width: 65px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 14px;
}

.chevron {
    height: 12px;
    max-width: 100%;
}

.table-cell-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.table-cell-content div {
    overflow: auto;
    overflow-wrap: break-word;
}

.group-list .table-cell-content > div {
    flex-grow: 1;
}

#options-container .table-cell-content > div:first-child {
    flex-grow: 1;
}

.group-name {
    font: -apple-system-body;
    color: rgb(0, 0, 0);
}

#options-container img {
    width: 20px;
    height: auto;
    padding-left: 10px;
}

#cancel-container .table-cell-content {
    color: rgb(255, 59, 48);
}

.table-cell.non-interactive {
    cursor: default;
}

.price {
    color: rgba(60, 60, 67, 0.6);
}

@media (prefers-color-scheme: dark) {

    #empty-text {
        color: rgba(235, 235, 245, 0.6);
    }

    .table-icon {
        border-color: #444;
    }

    .group-name {
        color: rgb(255, 255, 255);
    }

    #cancel-container .table-cell-content {
        color: rgb(255, 69, 58);
    }

    .price {
        color: rgba(235, 235, 245, 0.6);
    }

}