/* public/css/public-style.css */

.gtp-details-target-container { 
    min-height: 200px; /* Un peu moins haut par défaut */
    transition: all 0.3s ease; 
}
.gtp-loader { 
    text-align: center; 
    padding: 50px; 
    font-style: italic; 
    color: #888; 
}

.terrain-card-ajax { 
    animation: fadeIn 0.4s ease-out; 
    background: #ffffff; 
    padding: 25px; 
    border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    color: #333; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.gtp-price { 
    font-size: 1.8em; 
    color: #27ae60; 
    font-weight: bold; 
    margin: 10px 0; 
}

.gtp-address { 
    color: #666; 
    margin-bottom: 15px; 
    font-style: italic; 
}

.gtp-full-details-link { 
    display: block; 
    margin-top: 15px; 
    padding-top: 15px; 
    border-top: 1px solid #ddd; 
    text-align: center; 
    text-decoration: none; 
    font-weight: bold; 
    color: #2c3e50;
}

.gtp-full-details-link:hover { 
    color: #27ae60; 
}