.shameless-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shameless-container.layout-horizontal {
    flex-direction: row;
}

.admin-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #00000020;
    padding: 10px;
    transition: all 0.25s;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background-color: dodgerblue;
}

div.layout-horizontal {
    flex-direction: row;
    display: flex;
    gap: 10px;
}

.admin-button:hover {
    box-shadow: 0 0 2px 2px #00000040;
}

.loading {
    position: relative;
    min-height: 50px;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url('../Images/Loading.gif');
    background-color: white;
    background-position: center;
    background-size: 50px;
    background-repeat: no-repeat;
}

table {
    width: 100%;
}

td {
    padding: 5px;
    margin: 0;
}

tr:nth-child(2n+1) {
    background-color: #ddd;
}

tr:first-child {
    font-weight: bold;
    color: white;
    background-color: dodgerblue;
}

tr:first-child .cell-content {
    display: none;
}

tr:nth-child(n+2) .cell-title {
    display: none;
}

.popup-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background-color: #00000040;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    box-shadow: 0 0 4px 4px #00000020;
    border-radius: 10px;
    padding: 20px;
    color: black;
    max-width: 80%;
    max-height: 80%;
    overflow-y: scroll;
}

.shameless-error {
    display: block;
    border-left: 5px solid salmon;
    border-top: 1px solid salmon;
    border-bottom: 1px solid salmon;
    background-image: linear-gradient(to right, lightsalmon, white);
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.shameless-error.disabled {
    display: none;
}

.shameless-info {
    display: block;
    border-left: 5px solid #4986e2;
    border-top: 1px solid #4986e2;
    border-bottom: 1px solid #4986e2;
    background-color: dodgerblue;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: white;
}

.shameless-info.disabled {
    display: none;
}

@media only screen and (max-width: 767px) {
    tr:first-child {
        display: none;
    }

    td {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    tr:nth-child(n+2) .cell-title {
        display: block;
        font-weight: bold;
    }

    td:nth-child(2n+1) {
        background-color: #eee;
    }

    tr {
        display: block;
        background-color: white !important;
        margin-top: 20px;
        margin-bottom: 20px;
        border: 1px solid #00000059;
    }
}