/* General body styles */
body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('finalpic.jpg'); /* Path to your background image */
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the background image */
    color: #fff; /* Ensure text color contrasts well with the background */
}

.container {
    width: 50%;
    margin: 50px auto;
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background for the container */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

h1 {
    color: #4CAF50; /* Green color for headings */
    text-align: center;
}

/* Styling for form elements container */
.selectors {
    display: flex;
    justify-content: space-between; /* Space out the dropdowns */
    margin-bottom: 20px;
}

/* Individual form control styling */
.selectors div {
    flex: 1; /* Equal width to both selectors */
    margin-right: 10px;
}

/* Labels for accessibility */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #4CAF50; /* Green color to match the theme */
}

/* Dropdown styles */
select {
    width: 100%;
    padding: 10px;
    border-radius: 4px; /* Rounded borders on the dropdowns */
    border: none;
    background-color: #222;
    color: #fff; /* White text inside dropdowns */
    cursor: pointer;
}

/* Hover effects for dropdown */
select:hover {
    background-color: #333;
}

/* Styles for the results display */
.result {
    text-align: center;
    font-size: 1.2em;
}

/* Highlight for the predicted value */
.result h2 span {
    color: #4CAF50; /* Green highlight for values */
}
