/* HEADER */
header section .header {
    display: flex; 
    align-items: flex-end; 
    justify-content: space-between;
}

header h1 {
    padding: 0;
    margin: 0;
}

/* ALERT MESSAGE */
div.alert-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: black;
}

div.alert {
    width: 100%;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}

div.alert.active {
    transform: scale(1);
}

/* BUTTON */
a.button.disabled {
    cursor: not-allowed;
}

a.button.right {
    float: right;
}

/* VERSION MSG */
section .card p.probance-app-current-version {
    font-size: 12px;
    font-style: italic;
    color: rgb(158, 158, 158);
}

section .card a.probance-app-button-upgrade {
    float: right;
}

header section p.probance-app-current-version {
    float: right;
}

section.active, section[always-active="true"] {
    display: flex;
}

section {
    display: none;
}

/* CUSTOMER VIEW */
table thead tr th {
    font-weight: bold;
}

table tbody tr[id^='item-cust-'] {
    display: none;
}

table tbody tr[id^='item-cust-'].active {
    display: table-row;
}

div.pagination.hide {display: none;}

div.hidden {
    display: none;
}