#mpg_photo_preview img{
    max-width:80px;
    margin:4px;
    border-radius:4px;
} 
.mpg-errors{
    background:#ffe6e6;
    padding:8px;
    border:1px solid #f2b7b7;
    margin-bottom:10px;
} 
.mpg-success{
    background:#e6ffed;
    padding:8px;
    border:1px solid #b7f2c6;
    margin-bottom:10px;
} 
.mpg-success-box {
    background: #e7f6e9;
    border-left: 6px solid #28a745;
    padding: 20px 25px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    max-width: 650px;
}
.mpg-success-box h2 {
    color: #1f7e34;
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 10px;
}

.mpg-success-box p {
    font-size: 12px;
    color: #333;
    margin: 8px 0;
    line-height: 1.6;
}

.mpg-complaint-number {
    display: inline-block;
    background: #1f7e34;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}
.mpg-success-box {
    background: #e7f6e9;
    border-left: 6px solid #28a745;
    padding: 20px 25px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    max-width: 650px;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.mpg-success-box.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
.mpg-success-box h2 {
    color: #1f7e34;
    margin-top: 0;
    font-size: 14px !important;
}
.mpg-complaint-number {
    display: inline-block;
    background: #1f7e34;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}
.mpg-error-box h5{
    font-size: 12px;    
}
.mpg-error-box ul li{
    font-size: 10px;    
}
#mpgJsErrorBox h5{
    font-size: 12px;    
}
#mpgJsErrorBox ul li{
    font-size: 10px;    
}
.mpg-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6961;
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    line-height: 20px;
    text-align: center;
}
.mpg-close-btn:hover {
    background: #e60000;
}

/* image remove css */
.img-preview-box{
    position:relative;
    display:inline-block;
    margin:5px;
}
.img-preview-box img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:6px;
    border:1px solid #ccc;
}
.remove-img{
    position:absolute;
    top:-7px;
    right:-7px;
    background:red;
    color:#fff;
    width:22px;
    height:22px;
    line-height:22px;
    text-align:center;
    border-radius:50%;
    cursor:pointer;
    font-size:13px;
}

@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}