/* CSS for Inspiration Gallery */
.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item .prompt-tooltip {
    visibility: hidden;
    width: 280px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 105%; /* Position above the image */
    left: 50%;
    margin-left: -140px; /* Use half of the width to center */
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1.5;
}

.gallery-item:hover .prompt-tooltip {
    visibility: visible;
    opacity: 1;
}
