/*

Theme Name: ABS NIERUCHOMOŚCI

Author: ABS

Description: ABS NIERUCHOMOŚCI

Version: 1.0

License: GNU General Public License v2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html


*/

.project-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;  
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.project-gallery-thumbs li {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.project-gallery-thumbs img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-image:hover {
    background: darkred;
}
