
.image_addon .image_item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px dashed #ccc;
    border-radius: 8px; 
    cursor: pointer;
    overflow: unset;
    transition: all 0.3s ease;
    background: #fff;
}

.image_addon .image_item:hover { 
    transform: scale(1.05);
}

.image_addon .image_item.addimage {
    display: flex;
    align-items: center;
    justify-content: center; 
}
 

.image_addon .image_item .img_cv {
    width: 100%;
    height: 100%;
}

.image_addon .image_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image_addon .addimage img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.6;
}

.image_addon .image_item .delete_img {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: rgba(244, 67, 54, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; 
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 7;
}

.image_addon .image_item:hover .delete_img {
    opacity: 1;
}

.image_addon .image_item .delete_img:hover {
    transform: scale(1.1);
    background: rgba(244, 67, 54, 1);
}

/* Submit Button */
.report_form .submit_report {
    width: 100%;
    padding: 14px 20px; 
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
 
.report_form .submit_report:active {
    transform: translateY(0);
}

.report_form .submit_report:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Indicator */
.upload-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    z-index: 9;
    display: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {   
    .image_addon .image_item {
        width: 80px;
        height: 80px;
    }
    
    .report_form input[type="text"],
    .report_form textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 480px) { 
    
    .image_addon .image_item {
        width: 70px;
        height: 70px;
    }
}
