.column-container {
    background-color: unset;
    width: 1100px;
}

.page-content-wrapper {
    position: relative;
    max-width: 1460px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 10px;
}



.box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 16px;
    margin-top: 15px;
    width: 100%;
}

.wrapforboxes {
    display: block;
}

.test-box {
    width: auto;
    height: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--gst-background-columncontainer);
    overflow: hidden;
    min-height: 200px;
    transition: all 0.3s ease;
}

.mannequin-container {
    position: relative;
    width: 187px;
    height: 300px;
    box-shadow: 0px 0px 5px 0px #00000040;
    border-radius: 9px;
    flex-shrink: 0;
    margin: 0;
    margin-top: 3px;
}

.mannequin {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

.mannequin-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../static/images/gstmannequin.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 8px);
    transition: 0.3s ease;
}

.mannequin-container:hover .mannequin-image {
    opacity: 0;
}


.mannequin-image-old {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../static/images/mannequin.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 8px);
}

.quality-0.mannequin {
    background-color: #eaefd9;
}

.quality-1.mannequin {
    background-color: #def3f6;
}

.quality-2.mannequin {
    background-color: #e1d3ec;
}

.quality-3.mannequin {
    background-color: #fcf4e2;
}

.quality-4.mannequin {
    background-color: #ffd6da;
}

.jd-icon,
.gd-icon,
.us-icon,
.go-icon {
    position: absolute;
    top: 1px;
    left: 56px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 99px;
}

.dia-icon {
    position: absolute;
    background-image: url('../static/icons/diamond.png');
    top: 30px;
    left: 56px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 99px;
}


.gd-icon {
    background-image: url('../static/icons/gd_icon_small.png');
}

.jd-icon {
    background-image: url('../static/icons/jd_icon_small.png');
}

.us-icon {
    background-image: url('../static/icons/us_icon_small.png');
}

.go-icon {
    background-image: url('../static/icons/godesigner_icon_small.png');
}

.generated-image {
    position: absolute;
    background-repeat: no-repeat;
    background-color: transparent;
}

.back-image {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.color-box-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 300px;
    width: 53px;
    overflow-y: auto;
    padding: 6px;
    border-radius: 10px;
    align-content: flex-start;
    max-width: 160px;
}

.selected-color {
    border: 1px solid red !important;
}

.checkbox {
    position: absolute;
    top: calc(50% - 3px);
    left: 25px;
    transform: translateY(-50%);
    display: none;
}

.checkbox.active {
    display: block;
}

.button-container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    width: 100%;
    gap: 18px;
}


.wishlist-button,
.copy-link-button,
.trivia-submit-button {
    background-color: var(--gst-background-pink);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 130px;
    transition: 0.2s;
}

.wishlist-button img,
.copy-link-button img,
.trivia-submit-button img {
    margin-right: 5px;
}

.wishlist-button:hover,
.copy-link-button:hover,
.trivia-submit-button:hover {
    background-color: var(--gst-background-pink-hover);
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup {
    display: none;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: var(--gst-background-columncontainer);
    border-radius: 30px;
    z-index: 10000;
}

.popup-close {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    margin: 17px;

}

.popup-close img {
    width: 40px;
}


#triviaForm textarea {
    width: 520px;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    height: 40px;
}

.popup .color-box {
    margin-right: 10px;
    margin-left: 27px;
}

.popup .color-box-container {
    margin-top: 4px;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.popup .color-box-container.single-color-box .color-box,
.popup .color-box-container.single-color-box .color-box.selected-color {
    display: none;
}

.facts-container {
    position: relative;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
}

.facts-container span {
    margin: unset;
    font-weight: 700;
}

.filter {
    margin-top: 5px;
    transition: 0.1s;
}

.filter:hover {
    color: #999;
}

.facts-container .filter a {
    color: inherit;
    text-decoration: none;
}


.test-box.box-1 {
    position: relative;
    padding: 20px;
    min-height: 394px;
}

.visitorBox {
    display: flex;
    align-items: center;
    font-size: 14px;
    position: absolute;
    background-color: var(--gst-background-white);
    max-width: 70px;
    z-index: 20;
    border-radius: 20px;
    padding: 0 10px 0 6px;
    bottom: 15px;
    left: 15px;
    cursor: pointer;
    opacity: 50%;
    transition: 0.3s ease;
    color: var(--gst-text-pink);
    border: 1px solid var(--gst-border-pink)
}

.visitorBox:hover {
    opacity: 100%
}

.eraBox {
    display: flex;
    align-items: center;
    font-size: 14px;
    position: absolute;
    background-color: var(--gst-background-white);
    z-index: 20;
    border-radius: 20px;
    padding: 4px 8px;
    bottom: 45px;
    left: 15px;
    cursor: pointer;
    opacity: 50%;
    transition: 0.3s ease;
    color: var(--gst-text-pink);
    border: 1px solid var(--gst-border-pink);
}

.eraBox:hover {
    opacity: 100%
}

.test-div {
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 500;
    margin: 10px;
    margin-bottom: 20px;
}

.tag-container,
.trivia-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px 0px 5px;
}

.vibeDiv,
.tagDiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-height: 315px;
    overflow-y: scroll;
    margin-bottom: 20px;
}

.vibeDiv div,
.tagDiv div {
    margin: 7px 4.5px 7px 4.5px;
    font-size: 13px;
    background-color: var(--gst-background-white);
    padding: 10px 15px;
    border-radius: 16px;
    border: 1px solid var(--gst-border-pink);
    transition: 0.2s;
    cursor: pointer;
    color: var(--gst-text-pink);
}

.vibeDiv div.selected,
.tagDiv div.selected {
    border-color: gray;
    background-color: var(--gst-background-pink);
    color: #fff;
    border: 1px solid var(--gst-border-pink);
}

.vibeDiv div:hover,
.tagDiv div:hover {
    border-color: gray;
    background-color: var(--gst-background-pink);
    color: #fff;
    border: 1px solid var(--gst-border-pink);
}

.t-color-box-container,
.i-color-box-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #CC934F;
    padding: 5px 15px 5px 15px;
    border-radius: 90px;
    font-size: 14px;
    margin: 0 0 7px 5px;
    transition: 0.4s;
    width: fit-content;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    min-height: 17px;
}

.publicTag {
    margin: 0 0 7px 5px;
    font-size: 12px;
    background-color: var(--gst-text-white);
    padding: 5px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;
    min-height: 15px;
    color: var(--gst-text-pink);
    border: 0.69px solid var(--gst-border-pink)
}

.vibeTag {
    margin: 0 0 7px 5px;
    font-size: 12px;
    background-color: var(--gst-background-pink);
    padding: 5px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;
    min-height: 15px;
    color: var(--gst-text-on-pink);
    border: 0.69px solid var(--gst-border-white);
}

.vibeTag img {
    height: 15px;
    vertical-align: top;
}

.submitted-by {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 13px;
    padding: 15px;
    font-family: 'Poppins';
    margin-bottom: -36px;
    margin-left: -10px;
}

.submitted-by span {
    font-weight: 700;
}


.debug-container {
    font-size: 9px;
    bottom: 0;
    position: absolute;
    padding-right: 10px;
    font-weight: bold;
    right: 0;
    margin-bottom: -20px;
    margin-right: 10px;
}

.admin-facts {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.t-color-box-container {
    position: relative;
    padding-left: 29px;
    padding-right: 13px;
    background-color: var(--gst-background-pink-hover);
    transition: 0.2s;
    color: #fff;
    border: 0.69px solid var(--gst-border-pink-hover);
    transition: 0.2s;
}

.t-color-box-container:hover {
    background-color: var(--gst-background-pink);
}

.t-color-box-container:before {
    content: "\F4FE";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.tag-form {
    padding-top: 25px;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    gap: 115px;
    justify-content: center;
    align-items: center;
}

.item-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 6px;
    padding: 5px;
}

.item-div {
    margin: 0;
    background-color: #818181;
    padding: 4px;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.item-div:hover {
    transform: scale(1.05);
}

.item-div img {
    max-width: 100%;
    max-height: 100%;
}

.shop-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gst-text-pink);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auctions-txt-box {
    margin-left: 30px;
    font-size: 15px;
    padding: 6px;
    width: 210px;
    font-weight: 400;
    font-family: 'Poppins';
}

.auctions-wrapper {
    background-color: var(--gst-background-white2);
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
}


.close-button {
    display: none;
    position: absolute;
    margin-left: -15px;
    z-index: 5;
    font-size: 14px;
    margin-top: -5px;
    border: none;
    background-color: var(--gst-text-959595);
    height: 28px;
    border-radius: 90px;
    width: 15px;
    transition: 0.3s;
    cursor: pointer;
    color: var(--gst-text-white);
    opacity: 60%;
}

.close-button:hover {
    font-size: 16px;
    opacity: 100%;
    width: 30px;
    background-color: red;
}

.i-color-box-container {
    position: relative;
}

.i-color-box-container:hover .close-button {
    display: block;
}

.openingsmbutton {
    position: absolute;
    background-color: var(--gst-background-pink-hover);
    color: var(--gst-text-777);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -29px;
    color: #fff;
    font-weight: bold;
    padding: 3px 8px 3px 8px;
}

.openingsmbutton:hover {
    background-color: var(--gst-background-pink);
}

#toggleButton {
    position: absolute;
    right: 0;
    margin-top: -10px;
}

.boxheader {
    color: var(--gst-text-777);
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gst-border-pink-hover);
}

.header {
    font-size: 36px;
    text-align: center;
    width: inherit;
    font-weight: 700;
}

.auctionswrapper, .relatedwrapper {
    max-height: 179px;
    overflow-y: auto;
    width: 100%;
    scrollbar-width: thin;
}
.addrelation {
    background-color: var(--gst-background-pink-hover);
    font-size: 13px;
    z-index: 2;
    border-radius: 17px;
    padding: 8px 12px 8px 30px;
    color: var(--gst-text-white);
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s;
    color: var(--gst-text-on-pink);
    position: relative;
}

.addrelation:before {
    content: "\F4FE";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.addrelation:hover {
    background-color: var(--gst-background-pink);
}

.viewtradelog {
    background-color: var(--gst-background-pink-hover);
    z-index: 2;
    border-radius: 17px;
    padding: 5px;
    color: var(--gst-text-on-pink);
    font-weight: 700;
    position: absolute;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.viewtradelog:hover {
    background-color: var(--gst-background-pink);
}

.savebutton {
    background-color: #5EBD73;
    width: 130px;
    height: 33px;
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.2s;
}

.savebutton:hover {
    background-color: #88D098;
}

.dropdownselector {
    text-align: center;
}

.dropdownselector select {
    margin: 0 20px 0 20px;
    width: 150px;
    margin-top: 30px;
}

.hoverplz {
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    color: var(--gst-text-pink);
    transition: 0.2s;
}

.hoverplz:hover {
    color: var(--gst-text-pink-hover);
}

#reportError {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    z-index: 2;
    background-color: #AF4C4C;
    border-radius: 17px;
    padding: 9px;
    width: 140px;
    text-align: end;
    color: var(--gst-text-on-pink);
    font-weight: 500;
    padding-right: 27px;
    margin: 10px;
    transition: 0.2s;
    cursor: pointer;
}

#reportError:before {
    content: "\F33A";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

#reportError:hover {
    background-color: #D06B6B;
}

.tag-switch-button {
    color: #fff;
padding: 8px 11px;
border: none;
border-radius: 15px;
cursor: pointer;
transition: 0.3s ease;
font-weight: 500;
font-size: 14px;
width: 117px;
margin-right: 10px;
background-color: var(--gst-background-pink-hover);
}

.tag-switch-button:hover {
    background-color: var(--gst-background-pink);
}

.tag-switch-button.active {
    background-color: var(--gst-background-pink);
}
.vibeDiv div img {
    margin-right: 6px;
height: 17px;
vertical-align: text-bottom;
}

.eventItem,
.compItem {
    margin-left: 15px;
    display: none;
}

.triviaForm2 {
    margin-left: 320px;
}
#activeShopsContent th,
#wishlistsContent th,
#activeShopsContent td,
#wishlistsContent td {
    border: 1px solid var(--gst-border-pink-hover);
}

tr:hover {
background-color: var(--gst-background-F5F5F5);
}

.item-div {
    position: relative;
}

.removeRelButton {
    position: absolute;
    top: 0;
    right: 0;
    margin: 4px;
    border-radius: 40px;
    border: none;
    color: var(--gst-text-pink);
    background-color: #fff;
    width: 17px;
    height: 17px;
    cursor:pointer;
}

.popupformrel {
    font-weight: 500;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 380px;
}

#popupRelOverlay, #popupRel {
    display: none !important;
}

.relation-item-div {
    margin: 2px;
    background-color: #818181;
    padding: 5px;
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.relation-item-div img {
    max-width: 100%;
    max-height: 100%;
}

.relation-remove-button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(255, 90, 110, 0.9);
    color: white;
    font-size: 12px;
    line-height: 1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.relation-remove-button:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: rgba(255, 60, 80, 1);
}

.relation-preview-container {
    display: none;
    margin-top: 10px;
    padding: 5px;
    border: 1px dashed #ccc;
    border-radius: 5px;
}

.relation-preview-text {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #666;
}

.relation-preview-image {
    max-width: 60px;
    max-height: 60px;
    display: block;
}

.relation-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    max-height: 150px;
    overflow-y: auto;
}

.relation-label {
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
}

.relation-info-box {
    background-color: #f6f6f6; 
    border-radius: 8px; 
    padding: 12px; 
    margin-bottom: 15px;
}

.relation-info-box.hidden {
    display: none;
}

.ad-sidebar {
    min-width: 160px;
    min-height: 600px;
    position: sticky;
    top: 20px;
    margin-top: 103px;
}

.ad-sidebar.size-small {
    min-width: 160px;
}
.page-content-wrapper.size-small {
    max-width: 1460px;
}

.ad-sidebar.size-medium {
    min-width: 200px;
}

.page-content-wrapper.size-medium {
    max-width: 1540px;
}

.ad-sidebar.size-large {
    min-width: 250px;
}

.page-content-wrapper.size-large {
    max-width: 1640px;
}

.ad-sidebar.size-xlarge {
    min-width: 300px;
}

.page-content-wrapper.size-xlarge {
    max-width: 1740px;
}

.ad-sidebar-left {
    order: -1;
}

.ad-sidebar-right {
    order: 1;
}

.ad-wrapper {
    background-color: var(--gst-background-columncontainer);
    border-radius: 16px;
    padding: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.ad-header {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gst-border-pink-hover);
    position: relative;
}

.ad-title {
    color: var(--gst-text-777);
    font-size: 14px;
    font-weight: bold;
}

.ad-info-button {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--gst-background-pink-hover);
    border: none;
    border-radius: 50%;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 10px;
    opacity: 0.7;
}

.ad-info-button:hover {
    background-color: var(--gst-background-pink);
    color: white;
    text-decoration: none;
}

.ad-wrapper .adsbygoogle {
    width: 100%;
    min-height: 250px;
    flex-grow: 1;
}
.relation-section {
    margin-bottom: 10px;
}

.relation-item-input-container {
    display: flex;
    gap: 5px;
}

.relation-dialog-container {
    font-size: 14px;
}

.relation-dialog-popup {
    padding: 10px;
}

.swal2-title {
    font-size: 18px !important;
    padding: 0.5em 1em 0.5em !important;
}

.swal2-html-container {
    margin: 0.5em 1em 0.5em !important;
}

.swal2-actions {
    margin: 0.5em auto 0 !important;
}

.category-group {
    margin-bottom: 3px;
}

.category-group label {
    font-size: 14px;
    margin-left: 3px;
}

.subcategory label {
    font-size: 13px;
    margin-left: 3px;
}

.item-variant {
    margin: 2px;
    background-color: #818181;
    padding: 5px;
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.item-variant img {
    max-width: 100%;
    max-height: 100%;
}

.item-variant-checkbox {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.item-variant.selected {
    box-shadow: 0 0 0 2px red;
}

.item-variants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.preset-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -33px;
    margin-bottom: 10px;
}

.preset-button {
    background-color: var(--gst-background-white);
    color: var(--gst-text-pink);
    border: 1px solid var(--gst-border-pink);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.preset-button:hover, .preset-button.active {
    background-color: var(--gst-background-pink);
    color: #fff;
}

.preset-general .test-box {
    grid-column: auto;
    grid-row: auto;
}

.preset-general .box-1 {
    grid-column: 1;
    grid-row: 1;
}

.preset-general .box-2 {
    grid-column: 2;
    grid-row: 1;
}

.preset-general .box-6 {
    grid-column: 3;
    grid-row: 1;
}

.preset-general .box-4 {
    grid-column: 1;
    grid-row: 2;
}

.preset-general .box-3 {
    grid-column: 2;
    grid-row: 2;
}

.preset-general .box-11 {
    grid-column: 3;
    grid-row: 2;
}

.preset-general .box-5 {
    grid-column: 1;
    grid-row: 3;
}

.preset-general .box-9 {
    grid-column: 2;
    grid-row: 3;
}

.preset-general .box-7,
.preset-general .box-10,
.preset-general .box-8,
.preset-general .box-12 {
    display: none;
}

.preset-fashionista .box-1 {
    grid-column: 1;
    grid-row: 1;
}

.preset-fashionista .box-2 {
    grid-column: 2;
    grid-row: 1;
}

.preset-fashionista .box-4 {
    grid-column: 3;
    grid-row: 1;
}

.preset-fashionista .box-6 {
    grid-column: 1;
    grid-row: 2;
}

.preset-fashionista .box-3 {
    grid-column: 2;
    grid-row: 2;
}


.preset-fashionista .box-11 {
    grid-column: 3;
    grid-row: 2;
}

.preset-fashionista .box-12 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.preset-fashionista .box-7,
.preset-fashionista .box-10,
.preset-fashionista .box-8,
.preset-fashionista .box-5,
.preset-fashionista .box-9 {
    display: none;
}

.preset-trading .box-1 {
    grid-column: 1;
    grid-row: 1;
}

.preset-trading .box-2 {
    grid-column: 2;
    grid-row: 1;
}

.preset-trading .box-4 {
    grid-column: 3;
    grid-row: 1;
}

.preset-trading .box-8 {
    grid-column: 1 / 3;
    grid-row: 2;
}

.preset-trading .box-7 {
    grid-column: 3;
    grid-row: 2;
}


.preset-trading .box-5 {
    grid-column: 1;
    grid-row: 3;
}

.preset-trading .box-9 {
    grid-column: 2;
    grid-row: 3;
}

.preset-trading .box-10 {
    grid-column: 3;
    grid-row: 3;
}

.preset-trading .box-3 {
    grid-column: 1;
    grid-row: 4;
}

.preset-trading .box-11,
.preset-trading .box-12,
.preset-trading .box-6 {
    display: none;
}

.template-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    overflow: auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.box-1 .template-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

.preset-general .box-1 {
    min-height: 394px;
}

.preset-general .box-4,
.preset-general .box-6 {
    min-height: 300px;
}

.preset-fashionista .box-2,
.preset-fashionista .box-4 {
    min-height: 250px;
}

.preset-fashionista .box-3 .template-container {
    max-height: 225px;
}

.preset-general .box-3 .template-container {
    max-height: 326px;
}

.template-container > div,
.template-container > table,
.template-container > form {
    max-width: 100%;
}

.button-container {
    position: relative;
    margin-top: 20px;
    width: 100%;
}

#auctions-content {
    width: 100%;
    max-height: 312px;
}

.preset-button.active {
    box-shadow: 0 0 0 2px var(--gst-background-pink);
}

.preset-trading .box-1 .mannequin-container {
    margin-left: 0;
}



.color-box {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gst-border-colorbox);
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 15px;
}

.relatedwrapper {
    max-height: 240px;
    overflow-y: auto;
    width: 100%;
}

.report-info {
    color: #333333;
}

.form-layout {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding: 0 15px;
}

.form-section {
    flex: 0 1 auto;
}

.form-section:first-child {
    width: 300px;
}

.item-variants-container {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: var(--gst-background-F5F5F5);
    border-radius: 6px;
    padding: 10px;
    min-height: 100px;
    max-height: 370px;
    overflow-y: auto;
    width: 90px;
    padding-right: 25px;
}

.item-variant {
    margin: 2px;
    background-color: #818181;
    padding: 5px;
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.tag-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gst-border-pink-hover);
    padding: 0 15px;
}

.tag-tab {
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gst-text-777);
    position: relative;
    transition: 0.2s;
}

.tag-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gst-background-pink);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.tag-tab:hover {
    color: var(--gst-text-pink);
}

.tag-tab.active {
    color: var(--gst-text-pink);
}

.tag-tab.active::after {
    transform: scaleX(1);
}

.tag-content {
    display: none;
}

.tag-content.active {
    display: block;
}

.form-field input[type="text"],
.form-field input[type="date"],
.form-field textarea {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.form-field input[type="date"] {
    padding: 6px 8px;
}

.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 15px;
    gap: 5px;
}

.wizard-step {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.wizard-step:not(:last-child)::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--gst-border-pink-hover);
    margin: 0 10px;
}

.wizard-step.active {
    color: var(--gst-text-pink);
}

.wizard-step.completed {
    color: var(--gst-text-pink);
}

.wizard-content {
    display: none;
}

.wizard-content.active {
    display: block;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 15px;
}

.wizard-button {
    background-color: var(--gst-background-pink-hover);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    min-width: 100px;
}

.wizard-button:hover {
    background-color: var(--gst-background-pink);
}

.wizard-button:disabled {
    background-color: var(--gst-text-777);
    cursor: not-allowed;
}

.overview-section {
    background-color: var(--gst-background-F5F5F5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.overview-section h3 {
    color: var(--gst-text-pink);
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.overview-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 15px;
    font-size: 13px;
}

.overview-label {
    color: var(--gst-text-777);
    font-weight: 500;
}

.overview-value {
    color: var(--gst-body-fontcolor);
}

.overview-colors {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.overview-color {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: #818181;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overview-color img {
    max-width: 100%;
    max-height: 100%;
}

.loading-spinner {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: var(--gst-text-777);
}

.modern-list {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gst-border-pink-hover);
}

.list-header h3 {
    margin: 0;
    font-size: 15px;
    color: var(--gst-text-pink);
    font-weight: 600;
}

.list-header span {
    font-size: 12px;
    color: var(--gst-text-777);
    background-color: var(--gst-background-F5F5F5);
    padding: 3px 8px;
    border-radius: 10px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.item-card {
    display: flex;
    background-color: var(--gst-background-white2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-color {
    width: 25px;
    height: auto;
}

.card-content {
    padding: 10px;
    width: 100%;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
}

.username {
    font-size: 11px;
    margin-bottom: 6px;
    font-style: italic;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-badge {
    display: inline-block;
    background-color: var(--gst-background-pink-hover);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
    font-weight: 500;
    width: fit-content;
}

.price-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    background-color: var(--gst-background-F5F5F5);
    padding: 2px 6px;
    border-radius: 8px;
}

.price-item img {
    width: 12px;
    height: 12px;
}

.price-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    position: relative;
    margin-top: 10px;
    max-height: 355px;
    overflow-y: auto;
    padding-right: 8px;
}

.price-card {
    display: flex;
    background-color: var(--gst-background-white2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.price-color {
    width: 12px;
    height: auto;
}

.price-content {
    padding: 12px;
    width: 100%;
}

.price-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--gst-text-pink);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 13px;
    font-weight: 600;
}

.price-value {
    font-size: 13px;
    font-weight: 500;
}

.price-metadata {
    margin-top: 8px;
    font-size: 11px;
    font-weight: normal;
}

.info-button, .log-button {
    position: absolute;
    background-color: var(--gst-background-pink-hover);
    border: none;
    border-radius: 50%;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.info-button {
    top: 0;
    left: 0;
    margin: 10px;
}

.log-button {
    top: 0;
    right: 0;
    margin: 10px;
    border-radius: 15px;
    width: auto;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
}

.log-button i {
    margin-right: 5px;
}

.modern-log {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
}

.log-entry {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 10px;
    background-color: var(--gst-background-F5F5F5);
    border-radius: 8px;
    position: relative;
}

.log-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.log-content {
    flex: 1;
    font-size: 14px;
}

.log-action, .log-price, .log-date, .log-type {
    font-weight: 600;
    margin-right: 3px;
}

.log-type {
    background-color: var(--gst-background-pink-hover);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.log-report {
    background-color: transparent;
    border: none;
    color: #FF5555;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.log-report:hover {
    opacity: 1;
}

.item-tooltip {
    position: absolute;
    top: -60px;
    left: 20px;
    background-color: #333;
    padding: 8px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.item-tooltip img {
    max-height: 60px;
    display: block;
}

.report-dialog {
    text-align: left;
    margin-bottom: 15px;
    font-size: 14px;
}

.report-preview {
    background-color: var(--gst-background-F5F5F5);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.report-color {
    height: 6px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}

#item-preview-container {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#item-preview {
    max-height: 100px;
    display: none;
}

#loading-spinner {
    color: #888;
}

.report-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

#report-reason {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

#report-details {
    width: 85%;
    min-height: 50px;
    max-height: 80px;
}

.owned-indicator {
    margin-bottom: 6px;
}

.hidden {
    display: none;
}