.jobs-plugin {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.jobs-plugin form {
    display: flex;
    flex-direction: column;
}

.jobs-plugin .form-group {
    margin-bottom: 15px;
}

.jobs-plugin label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.jobs-plugin input[type="text"],
.jobs-plugin input[type="date"],
.jobs-plugin input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 16px;
}

.jobs-plugin input[type="submit"] {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.jobs-plugin input[type="submit"]:hover {
    background-color: #218838;
}

.jobs-plugin input[type="file"] {
    padding: 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .jobs-plugin {
        padding: 15px;
    }

    .jobs-plugin input[type="text"],
    .jobs-plugin input[type="date"],
    .jobs-plugin input[type="file"],
    .jobs-plugin input[type="submit"] {
        font-size: 14px;
        padding: 8px;
    }
}


/* Add to your plugin's CSS file */

.job-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.job-item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.job-title {
    cursor: pointer;
    color: #0073aa;
}

.job-title:hover {
    text-decoration: underline;
}

.job-details {
    margin-top: 10px;
}

.job-images {
    margin-bottom: 10px;
}

.image-wrapper {
    display: inline-block;
    margin-right: 10px;
}

.delete-button {
    color: #ff0000;
}

.delete-button:hover {
    text-decoration: underline;
}


td {
    text-align: center;
}