body { background: #f8fafc; } .jumbotron{padding:1rem 1.5rem;background:#fff;border-radius:.5rem;}
#map {
    height: 70vh;
    min-height: 420px;
}
/* Bundle button states */
.add-to-bundle-btn {
    transition: all 0.3s ease;
}

.add-to-bundle-btn.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    cursor: not-allowed;
}

.add-to-bundle-btn.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.add-to-bundle-btn:not(.btn-success):hover {
    transform: scale(1.05);
}

/* Pulse animation for newly added items */
@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

.add-to-bundle-btn.just-added {
    animation: pulseGreen 1s ease-out;
}

@media (max-width: 480px) {
    #lotPhotoPopup {
        width: 90vw !important;
        max-width: 90vw !important;
        left: 5vw !important;
        right: 5vw !important;
    }
}
