body {
    font-family: 'Inter', sans-serif;
}

input, select, textarea {
    border: 3px solid #1F2937; /* Thicker, darker border for high visibility */
    background-color: #FFFFFF; /* Bright white background */
    color: #111827; /* Darkest text for contrast */
    font-size: 16px; /* Larger font size for readability */
    padding: 10px 14px; /* Increased padding for comfort */
    border-radius: 8px; /* Larger radius for modern look */
    transition: border-color 0.2s ease, box-shadow 0.2s ease; /* Smooth transitions */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4F46E5; /* Bright indigo focus border */
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.3); /* Stronger glow effect */
}

input::placeholder {
    color: #4B5563; /* Darker gray placeholder for clarity */
    font-weight: 500; /* Bolder placeholder */
    opacity: 1; /* Full visibility */
}

label {
    font-weight: 700; /* Bolder labels */
    font-size: 14px; /* Slightly larger labels */
    color: #111827; /* Darkest text for labels */
    margin-bottom: 6px; /* More spacing below labels */
}

/* Custom file input styling */
input[type="file"] {
    padding: 8px; /* Adjust padding for file inputs */
    border: 3px solid #1F2937; /* Match text input border */
    background-color: #FFFFFF;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #4F46E5; /* Indigo button */
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #4338CA; /* Darker indigo on hover */
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}