/* Job Vacancy Manager Styles */
.jvm-filters-wrapper {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.jvm-filters-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.jvm-filters-form input,
.jvm-filters-form select {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.jvm-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.jvm-btn:hover {
    background: #005177;
}
.jvm-btn-outline {
    display: inline-block;
    border: 2px solid #0073aa;
    color: #0073aa;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.jvm-btn-outline:hover {
    background: #0073aa;
    color: #fff;
}
.jvm-job-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.jvm-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.jvm-job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.jvm-job-title {
    margin: 0;
    font-size: 1.25em;
}
.jvm-job-title a {
    text-decoration: none;
    color: #333;
}
.jvm-job-type {
    font-size: 0.85em;
    padding: 4px 8px;
    border-radius: 4px;
    background: #eef;
    color: #336;
    font-weight: 600;
}
.jvm-job-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}
.jvm-meta-item::before {
    content: "•";
    margin-right: 5px;
    color: #ccc;
}
.jvm-meta-item:first-child::before {
    content: "";
    margin-right: 0;
}
.jvm-job-description {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}
.jvm-pagination {
    margin-top: 30px;
    text-align: center;
}
.jvm-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}
.jvm-pagination .page-numbers.current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
@media (max-width: 768px) {
    .jvm-filters-form {
        flex-direction: column;
    }
    .jvm-job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.jvm-single-job-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}
.jvm-single-job-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.jvm-single-job-meta li {
    margin: 0;
}
.jvm-single-job-apply {
    margin-top: 30px;
    text-align: center;
}
.jvm-single-job-apply .jvm-btn {
    font-size: 1.1em;
    padding: 12px 30px;
}

/* Form Styles */
.jvm-form-container {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    margin-top: 20px;
}
.jvm-form-group {
    margin-bottom: 15px;
}
.jvm-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
}
.jvm-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.jvm-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}
.jvm-btn-danger:hover {
    background: #dc3545;
    color: #fff !important;
}
