:root {
    --icon-size: 64px;
    --map-Size: 336px;
}

.content #switch-version input:first-child {
    display: block;
    background-color: transparent;
    border: 0;
}

.content #switch-version {
    position: relative;
    cursor: pointer;
}

.content #switch-version input{
    color: var(--txtColor1);    
    cursor: pointer;
    text-align: left;
    width: 135px;
}

.content #switch-version::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 80px;
    width: 40px;
    height: 100%;
    background-color: #d29d3b4a;
    border-radius: 100px;
    z-index: -1;
}
.content #switch-version::after {
    content: '';
    display: block;
    position: absolute;
    top: -4px;
    left: 105px;
    width: 23px;
    height: 23px;
    background-color: var(--mainColor);
    border-radius: 50%;
    border: 2px solid var(--mainColor);
    z-index: -1;
}

.content .display {
    display: flex;
}

.content .display .filter input:first-child {
    margin-top: 50px;
}

.content .display .filter input {
    font-size: 14px;
    width: 95%;
    padding: 5px 3px;
    margin-top: 15px;
    margin-bottom: 8px;
    border: #d29d3b4a 2px inset;
    background-color: var(--bgColor2);
    color: var(--txtColor1); 
}

.content .display .filter input::placeholder {
    color: #938171;
}

.content .display .filter input:focus-visible {
    border-color: var(--mainColor);
    outline: 0;
}

.content .item-container {
    width: calc(100% - var(--map-Size) - 15px - 160px);
    height: 526px;
    overflow-y: auto;
    box-shadow: #322a24ba 0px 5px 7px 3px;
    margin-left: 15px;
}

.content .item {
    position: relative;
    display: flex;
    height: 90px;
    align-items: center;
}

.content .quality {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: var(--icon-size);
    height: var(--icon-size);
    /* position: absolute; */
}

.content .image {
    background-image: url(../images/items/DragonBall.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: var(--icon-size);
    height: var(--icon-size);
    position: relative;
   
    border: 2px solid #b29143;
}
.corner-item {
    position: absolute; /* Absolutely position this item */
    top: 0;          /* Adjust these values to position in the corner */
    right: 0;         /* Adjust these values to position in the corner */
    background-color: rgb(44 43 43 / 80%); /* Optional: Add a background */
    padding: 5px;      /* Optional: Add some padding */
    border: 1px solid black; /* Optional: Add a border */
    font-weight: bold;
    font-size: larger;
}

.content .image span {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.content #mapContainer {
    position: relative;
    height: var(--map-Size); 
    width: var(--map-Size); 
    background-image: url(../images/market.jpg); background-size: 100% 100%;
    margin-left: 15px;
    border: var(--mainColor) solid 1px;
}

.content #table1 {
    border-spacing: 0;
}

.content #table1 tr {
    height: 50px;
}

.content #table1 tr:nth-child(even) {
    background-color: #d29d3b21;
}

.content #table1 td {
    min-width: 50px;
}

.content #table1 tr:not(:first-child) td {
    font-size: 12px;
}

.content #table1 td:first-child {
    width: 180px;
}
.content #table1 td:first-child p {
    margin-left: 10px;
}
.content #table1 td:nth-child(2) {
    display: none;
}
.content #table1 td:nth-child(3),
.content #table1 td:nth-child(4) {
   
}
.content #table1 td:nth-child(5),
.content #table1 td:nth-child(8) {
    width: 85px;
}
.content #table1 td:nth-child(6),
.content #table1 td:nth-child(7) {
    width: 120px;
}
.content #table1 {
    width: 100%;
}

.content #table1 tr:first-child {
    font-size: 14px;
    font-weight: bold;
}

.seller-circle {
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: radial-gradient(orangered, orange, white);
    border-radius: 50%;
}
#table1 tr:not(:first-child):hover {
    background-color: var(--bgColor2);
}