/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

/* Header Styles */
h1, h2, h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

/* Text and Links */
p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: justify;
}

a {
    font-size: 1em;
    color: #ffffff;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    background-color: #007B9A;
}

a:hover {
    text-decoration: underline;
}

/* Form Styles */
form {
    text-align: left;
    margin: 20px 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Button Styles */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

button:hover {
    background-color: #45a049;
}

.button-primary {
    background-color: #00b41e;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

.button-primary:hover {
    background-color: #007419;
    transition: background-color 0.5s ease;
}

.button-secondary {
    background-color: #0058bd;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

.button-secondary:hover {
    background-color: #003947;
    transition: background-color 0.5s ease;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
    text-align: left;
}

table th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.5em;
    }

    button, input, textarea {
        font-size: 0.9em;
    }
}

/* Job Counter */
.job-counter {
    margin-top: 20px;
    font-size: 1.5em;
    color: #333;
}
