/* Common styles for input elements */
td.table-input input {
    font-size: 20px;
    padding: .75rem;
    width: 100%;
    text-align: center !important;
    border: none;
    color: rgba(255,255,255,1);
    outline: none;
}

td.table-input input:focus {
    background: rgb(255 255 255 / 55%);
    color: rgb(0,0,0);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Common styles for labels */
label {
    padding: 1.75rem;
    width: 100%;
    text-align: center !important;
}

/* Common styles for table headers */
.thead-light {
    font-size: 20px;
    color: rgba(255,255,255,1);
}

/* Common styles for table rows */
.table th, .table td {
    padding: 0!important;
}

/* Styles for desktop view */
.table-holder {
    display: flex;
    justify-content: space-around;
    background-color: #343a40; /* Set a dark background color for the entire table-holder */
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.overworld-holder,
.nether-holder {
    background-color: #495057; /* Set a background color for Overworld and Nether sections */
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    height: 275px;
}

.table-bordered {
    border: 2px solid #6c757d; /* Set border color for the tables */
}

.overworld th {
    background-color: #24382e; /* Set a light background color for table headers */
}

.nether th {
    background-color: #371623; /* Set a light background color for table headers */
}

.table-input.overworld input {
    background: rgb(67 52 51);
}

.table-input.nether input {
    background: rgb(35 20 39);
}

.overworld-holder {
    border-radius: 10px 0 0 10px;
}

.nether-holder {
    border-radius: 0 10px 10px 0;
}

/* Styles for mobile view */
@media (max-width: 768px) {
    .table-holder {
        flex-direction: column;
        align-items: center;
    }

    .overworld-holder,
    .nether-holder {
        width: 100%;
        border-radius: 10px;
        margin-top: 20px;
    }
}
.overworld-holder{
    background-image: url(https://e0.pxfuel.com/wallpapers/895/196/desktop-wallpaper-minecraft-village-background.jpg);
}
.nether-holder{
    background-image: url(https://e1.pxfuel.com/desktop-wallpaper/113/954/desktop-wallpaper-no-spoiler-the-new-minecraft-update-makes-parts-of-the-nether-really-look-like-subnautica-subnautica-minecraft-nether-update.jpg);
}