/* Additional custom styles to match the reference design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure full page coverage */
html, body {
    height: 100%;
}

/* Smooth transitions */
button {
    transition: all 0.2s ease-in-out;
}

button:active {
    transform: scale(0.98);
}

/* Custom focus styles */
input:focus,
button:focus {
    outline: none;
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Card shadow on hover */
.bg-white {
    transition: box-shadow 0.3s ease;
}

/* Ensure consistent image sizing */
#property-image {
    object-fit: cover;
    display: block;
}

/* Countdown timer styling */
#countdown-timer {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 550;
    font-size: 1.3rem;
}

/* Offer count styling */
#offer-count {
    font-weight: 550;
    font-size: 1.3rem;
}

/* SweetAlert2 custom styling */
.swal2-popup {
    font-family: inherit;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    #property-address {
        font-size: 1.5rem;
    }
    
    #property-price {
        font-size: 2rem;
    }
}