body {
    font-family: 'Inter', sans-serif;
}

.container {
    transition: all 0.3s ease-in-out;
}

#uploadedImage {
    border: 2px solid #e5e7eb;
    max-height: 300px;
    object-fit: contain;
    transition: border-color 0.3s ease;
}

#uploadedImage:hover {
    border-color: #3b82f6;
}

#predictButton {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#predictButton:hover {
    transform: translateY(-2px);
}

#result {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: opacity 0.3s ease;
}

#predictionChart {
    max-height: 250px;
    width: 100%;
}

@media (max-width: 768px) {

    #uploadedImage,
    #result {
        max-height: 200px;
        
    }

    h1 {
        font-size: 1.5rem;
    }
}