/* style.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigation bar styling */
nav {
    display: flex;
    justify-content: center;
    background-color: #004aad;
    padding: 15px 0;
    margin-bottom: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

/* Headers */
h1, h2 {
    text-align: center;
    color: #004aad;
}

p {
    text-align: center;
    font-size: 18px;
    margin: 10px 20px;
}

/* Forms */
form {
    max-width: 500px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input[type="text"], input[type="email"], input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #004aad;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #002f6c;
}

/* Job Listings - Flexbox */
.job-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 20px 40px 20px;
}

.job-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
}

.job-card a:hover {
    color: #004aad;
}

/* Center paragraphs and form description */
.upload-description {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* Optional message textarea styling */
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.4em;
    color: #023e8a;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.card-content a {
    display: inline-block;
    padding: 10px 18px;
    background: #0077b6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.card-content a:hover {
    background: #00b4d8;
}


