



@media (max-width: 768px) {
    .column1, .column2 {
        float: none;
        width: 100%;
    }
}

.column2 h2 {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}
.image-upload {
    margin-bottom: 10px;
}

.image-upload label {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.image-upload-input {
    width: 100%;
}

#category-list-container {
   max-width: 600px;
   padding-left: 170px;
   box-sizing: border-box;
   margin-top: -5px;
}
#category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.category-item {
    background-color: transparent;
    border: 1px solid #8C8F94;
    padding-top: 7px;
    padding-bottom: 8px;
    padding-left: 14px;
    padding-right: 12px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease; 
}

.remove-category {
    cursor: pointer;
    margin-left: 8px;
    color: #8C8F94;
    font-weight: normal;
}

.add-category-link {
    background: none;
    border: none;
    color: #2270B1;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    padding: 0px;
    padding-left: 8px;
    width: 95px;
    flex-shrink: 0;
    white-space: nowrap;
}

.add-category-link:hover {
    text-decoration: none;
}


#category-input {
    padding-right: 40px; 
    width: 100%;
    box-sizing: border-box;
}

.char-count {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #c6c6c6;
    font-size: 14px;
    font-weight: normal;
}
.settings-section .content-column .input-container {
    position: relative;
}

.input-container {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.input-wrapper {
    position: relative;
    width: 100%;
}



.button.button-secondary {
    width: 100%;
    padding-top: 4px; 
    padding-bottom: 5px; 
}

.image-tab-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    padding-top: 15px;
    gap: 8px;
}

.image-tab-list li {
    flex: 1;
}

.image-tab-list li.image-uploaded {
    color: white;
    z-index: 9999;
    position: relative;
    box-shadow: none;
    transition: box-shadow 0.2s ease-in-out;
}
.image-tab-list li.image-uploaded:hover {
    opacity: 0.8;
}
.image-tab-list li.image-uploaded.active .image-placeholder {
    box-shadow: inset 0 0 0 3px #2270B1;
    transition: box-shadow 0.2s ease-in-out;
}

.image-placeholder {
    position: relative;
    background-color: #F0F0F1;
    padding-top: 75%;
    cursor: pointer;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s, border 0.3s; 
    box-shadow: inset 0 0 0 2px transparent;
}


.image-part {
    padding-bottom: 20px;
    line-height: 0px;
}

.image-detail {
    padding-top: 30px;
    display: block;
}

.image-detail .text-container {
    display: none;
}

.tuning-error {
    color: red;
}

.upload-icon-container {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: none;
    background-color: #fff;
    border-radius: 4px;
}

.upload-icon-container:hover {
    opacity: 0.9;
}

.upload-icon-container .dashicons {
    font-size: 16px;
    color: #2270B1;
    padding-top: 5px;
}
.loading-container {
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}
.pulsating-loader {
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0; 
    animation: fadeAndPulse 1s ease-in-out infinite; 
    border-radius: 99px;
}

@keyframes fadeAndPulse {
    0%, 100% {
        opacity: 0; 
    }
    50% {
        opacity: 1;
    }
}

.pulsating-loader:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #2270B1;
    opacity: 1;
    animation: pulse 1s ease-in-out infinite alternate;
    border-radius: 99px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}