#price-match-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

#price-match-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 532px;
    max-width: 800px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.price-match-popup-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    line-height: 30px;
}

/* Add any additional styling for your form here */
.robu-match-trigger{
    color:blue;
}
.robu-match-trigger:hover{
    color:blue;
}
.robu-prohead {
    text-align: center;
    font-weight: 600;
}
.robu-product-web {
    text-align: center;
        font-weight: 600;
}
button.robu-brurl-sub {
    background-color: #02007f !important;
    color: #fff !important;
    margin-top: 15px;
    width: 100%;
    border-radius: inherit;
}
#product-name {
    border: 1px solid black;
    border-radius: 2px;
}
#form-message.success-message {
    text-align:center;
    color: green;
    font-weight:bold;
    margin-bottom: 5px;
    font-size:1.1rem;
}
/*
* Responsive
*/
@media (max-width: 768px) { 
    #price-match-popup {
        width: 90%;
        max-width: none; 
    }
    #price-match-popup input[type="text"] {
        width: 100%;
        max-width: 100%; /* Ensures the input field doesn't overflow its container */
    }
}

@media (max-width: 480px) { 
    #price-match-popup {
        width: 95%; 
        padding: 15px; 
    }
    #product-name {
        font-size: 8px;
        font-weight: 700;
    }
}

