/* Styling for task application form and admin interface */
#taskPostForm {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

#taskPostForm input, #taskPostForm select, #taskPostForm textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#taskPostForm button {
    background-color: #0C71CF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#taskPostForm button:hover {
    background-color: #094a80;
}
/* Styling for success and error messages in task form */
.success-message {
    color: green;
    margin-top: 10px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

/* Styling for admin interface */
.task-requests-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.task-requests-table thead {
    background-color: #0C71CF;
    color: white;
}

.task-requests-table th, .task-requests-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.task-requests-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.task-requests-table tbody tr:hover {
    background-color: #f1f1f1;
}

.task-requests-table button {
    background-color: #0C71CF;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.task-requests-table button:hover {
    background-color: #0A58C6;
}
/* styling for user all applications shortcode */
.task-list {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.task-list th, .task-list td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.task-list th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
}

.task-list tr:nth-child(even) {
    background-color: #f9f9f9;
}

.task-list tr:hover {
    background-color: #f1f1f1;
}

.task-list h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}
/* styling report task shortcode */
.report-task-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.report-task-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.report-task-form input[type="text"],
.report-task-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.report-task-form button {
    padding: 10px 15px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.report-task-form button:hover {
    background-color: #005a8b;
}

.success-message {
    margin: 20px auto;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
}

