/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Container for the main content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light text color */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
/* Styling for the header */
header {
    text-align: center;
    margin-bottom: 20px;
}
header h1 {
    font-size: 2.5em;
    color: #1e90ff; /* Bright blue for header text */
}
/* Main content area */
main {
    padding: 20px;
}
/* Form styling */



form {
    background-color: #1e1e1e; /* Slightly lighter dark background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Form group styling */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #e0e0e0; /* Light text color for labels */
}
.form-group input[type="text"],
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333; /* Darker border color */
    background-color: #2c2c2c; /* Dark background for input fields */
    color: #e0e0e0; /* Light text color for input fields */
}
/* Button styling */
form button {
    background-color: #1e90ff; /* Bright blue for button */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
form button:hover {
    background-color: #4682b4; /* Darker shade on hover */
}
/* Styling for the response section */
.response {
    margin-top: 20px;
    padding: 15px;
    background-color: #2c2c2c; /* Dark background for response */
    border-radius: 8px;
    border: 1px solid #444; /* Darker border color */
}
.response p {
    font-size: 0.9em; /* Smaller font size */
    color: #e0e0e0; /* Light text color */
    margin-bottom: 10px; /* Space between paragraphs */
}
.response p strong {
    display: block;
    margin-bottom: 5px; /* Space between label and content */
}
/* Footer styling */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #888; /* Light gray for footer text */
}