body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #e9f6d3, #b8f279);

    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: linear-gradient(to right, #eff2ec, #e2f8cd);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 400px;
}

.container:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 1);
}

h1 {
    color: #333;
}

input[type="file"] {
    margin: 20px 0;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="file"]:hover {
    background-color: #218838;
}

.image-preview {
    margin: 20px 0;
}

img {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#prediction {
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
}

#disease-info {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
}
