.mahan-price-editor {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.mahan-price-editor label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.mahan-price-editor input,
.mahan-price-editor select,
.mahan-price-editor button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.mahan-price-editor button {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
}

.mahan-price-editor button:hover {
    background-color: #005177;
}

#mahan-price-message {
    margin-top: 15px;
    font-weight: bold;
    color: green;
    text-align: center;
}
input[name="remove_sale_price"] {
    display: inline-block;
    width: auto;
}
span.mahan-price-loader {
    display: none;
    position: relative;
    border: #7e7e7e dotted 2px;
    border-bottom-color: transparent;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    margin: 0 4px;
    top:3px;
    animation: mahan-price-spin infinite 2s linear;
}
@-webkit-keyframes mahan-price-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes mahan-price-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}