body {
    background-color: rgb(211, 211, 211) !important;
}

.hidden {
    display: none;
    visibility: hidden;
}

.center-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}
.center-horizontal {
    margin: auto;
    display: flex;
    align-items: center;
}
.center {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center; 
}

#gen-div {
    background-color: rgb(78, 78, 78);
}


#gen-div table, th, td {
    border: 1px solid;
    border-collapse: collapse;
    border-color: rgb(118, 118, 118);
  }

#gen-div table tr th{
    padding: 20px;
}
#gen-div table td {
    min-width: 250px;
    padding: 10px;
    text-align: center;
    color: aliceblue;
}

#gen-btn {
    padding: 20px;
    font-size: 30px;
    width: 100%;
    border-radius: 0px;
	
	font-family: "Avara", "Manrope";
}

.gen-row th {
    text-align: start;
}

.checkbox {
    user-select: none;
    cursor: pointer;

    background-color: rgb(25, 93, 151);

    color: white;
}

.checked {
    color: rgb(180, 184, 189);
    background-color: rgb(87, 104, 122);
}
.check-text {
    color: rgb(120, 61, 61);
    background-color: rgb(215, 215, 215);
}


.loot-name, .loot-damage, .loot-critic {
    margin: 0;
}


.empty-cell {
    background-color: rgb(25, 93, 151);
}


@media only screen and (max-width: 600px) {
    #gen-div {
      overflow: scroll;
      background-color: rgb(78, 78, 78);
    }

    #gen-div table {
        min-width: none;
        width: 100%;
    }

    #gen-btn {
        padding: 20px;
        font-size: 30px;
        width: 100%;
        border-radius: 0px;
    }

    #gen-div table td {
        min-width: 10px;
    }
    #check-arme {
        width: 20%;
    }
  }