.sf-valuation-container {
    max-width: 1024px;
    margin: 0 auto;
}
.sf-valuation-container .font-bold.text-xl { color: black; }
#propertyInfo { margin-top: 15px; }

.card-shadow {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
}
.pulse-glow { animation: ffd-val-pulse 2s infinite; }
@keyframes ffd-val-pulse {
    0%,100% { box-shadow: 0 0 20px rgba(220,38,38,.3); }
    50%      { box-shadow: 0 0 30px rgba(220,38,38,.5); }
}
.slide-in { animation: ffd-val-slide 0.5s ease-out; }
@keyframes ffd-val-slide {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.answer-btn.selected {
    border-color: #3b82f6 !important;
    background-color: #dbeafe !important;
}
.sf-spinner {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: ffd-val-spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}
@keyframes ffd-val-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
