@font-face {
    font-family: 'Blender Pro';
    font-weight: 300; /* Thin */
    src: url('../fonts/BlenderPro-Thin.woff') format('woff');
}
@font-face {
    font-family: 'Blender Pro';
    font-weight: 700; /* Bold */
    src: url('../fonts/BlenderPro-Bold.woff') format('woff');
}
body {
    font-family: 'Blender Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background: linear-gradient(to right, #433878, #7E60BF);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
header h1 {
    margin: 0;
    font-size: 3em; /* Increased font size for header */
    font-weight: 700; /* Bold font for header */
    letter-spacing: 2px;
}
form {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
label {
    font-weight: 700; /* Bold font for labels */
    display: block;
    margin-bottom: 10px;
}
input[type="text"], input[type="email"], .file-upload-label {
    width: calc(100% - 32px); /* Ensures full width */
    padding: 15px; /* Consistent padding */
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em; /* Consistent font size */
    font-family: 'Blender Pro', sans-serif; /* Font for inputs */
    box-sizing: border-box;
}
.file-upload {
    position: relative;
    margin: 10px 0; /* Keep margin consistent */
}
.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
}
.file-upload-label {
    display: inline-block;
    background-color: #7E60BF;
    color: white;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.file-upload-label:hover {
    background-color: #6E4C9A;
}
input[type="submit"] {
    background-color: #7E60BF; /* Original background color */
    color: white; /* Text color */
    cursor: pointer;
    border: none; /* Remove border */
    padding: 15px; /* Ensure padding matches input fields */
    margin: 10px 0; /* Ensure margin matches input fields */
    font-size: 1em; /* Ensure font size matches input fields */
    border-radius: 5px; /* Consistent border radius */
    transition: background-color 0.3s ease;
    width: calc(100% - 32px); /* Match width with other inputs */
    font-family: 'Blender Pro', sans-serif;
    font-weight: 700; /* Bold */
}
input[type="submit"]:hover {
    background-color: #6E4C9A; /* Darker shade on hover */
}
.results {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}
th {
    background-color: #f2f2f2;
    font-weight: 700; /* Bold font for table headers */
}
@media (max-width: 800px) {
    form, .results {
        max-width: 100%;
        margin: 10px;
        padding: 15px;
    }
}
footer {
    background: linear-gradient(to right, #433878, #7E60BF);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
footer a {
    color: white; /* Set link color to white */
    text-decoration: none; /* Remove underline if desired */
}
footer a:hover,
footer a:visited,
footer a:active {
    color: white; /* Keep link color white for all states */
}

