/* Image Upload Preview Styles */

.image-preview-container {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.image-preview {
    max-width: 200px;
    max-height: 200px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.95);
    color: white;
    border: 2px solid white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.image-preview-remove:hover {
    background: rgba(255, 59, 48, 1);
    transform: scale(1.1);
}

.image-preview-remove:active {
    transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .image-preview {
        max-width: 150px;
        max-height: 150px;
    }
    
    .image-preview-remove {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }
}
