/*
    Witrics base structual css classes
*/
.app-card {
    width: 100%;
    margin: 1em;
    text-decoration: none;
    color: var(--rz-Primary);
}

.app-clickable {
    cursor: pointer;
}

.space-between {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nooverflow {
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-panel {
    background-color:aliceblue;
}
.ripple {
    padding: 8px;
}

    .ripple:hover {
        background-color: #F1F4F3;
    }