/** Main **/

#material-hotbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}


/** Entries **/

.material-hotbar-entry {
    position: relative;

    width: 32px;
    height: 32px;

    opacity: 0.6;

    background-image: url("../../../img/ui_background.png");
    background-repeat: repeat;
    background-size: 128px;
    image-rendering: pixelated;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.25);
    border: 1px solid #cccccc;
}

.material-hotbar-entry img {
    width: 100%;
    height: 100%;

    image-rendering: auto;
}

.material-hotbar-entry p {
    position: absolute;
    bottom: 2px;
    right: 2px;

    margin: 0;

    color: white;
    font-size: 14px;
}

.material-hotbar-entry-low img {
    filter: saturate(0);
}

.material-hotbar-entry-low p {
    color: #ee4e4e;
}


/** Entries - Sizing **/

.material-hotbar-entry:nth-child(2), .material-hotbar-entry:nth-child(4) {
    width: 40px;
    height: 40px;

    opacity: 0.8;
}

.material-hotbar-entry:nth-child(3) {
    width: 48px;
    height: 48px;

    opacity: 1;
}