.product-import-popup, .popup-overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #050209;
    padding: 20px;
    box-shadow: 0px 0px 10px 16px rgba(87, 12, 126, 0.5);
    border-radius: 10px;
    z-index: 9999;
}
.product-urls, #consumer-secret, #consumer-key{
    border: 1px solid rgb(173, 73, 225);
    margin-bottom: 20px;
}
.product-urls:focus {
    border: 1px solid rgb(173, 73, 225) !important; /* Keeps the same border color */
    outline: none; /* Ensures no extra styling appears */
}

.hint-button {
    background-color: #ffc107;
    color: #000;
}

.hint-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #050209;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1001;
    display: none;
    width: 90%;
    max-width: 500px;
}
.hint-content {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    direction: rtl;
    color: #AD49E1;
}