/* 
 * Image Debug CSS
 *
 * This stylesheet provides styling for image error states,
 * ensuring that the website maintains a clean appearance
 * even when images fail to load.
 */

/* Style for images that fail to load */
img.error {
    position: relative;
    min-height: 200px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.error::before {
    content: "Image Not Available";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #666;
}

/* Service image container styling */
.service-image {
    position: relative;
    min-height: 200px;
    border-radius: 4px;
    overflow: hidden;
}

/* Empty service image styling */
.service-image:empty {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image:empty::before {
    content: "Image Not Available";
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #666;
}