.manage-jobs-page {
    padding: 20px;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Filters Section */
.filters-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

/* Jobs List */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta i {
    color: #007bff;
}

/* Status Badges */
.status-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Job Status Badges */
.status-badge.published {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.draft {
    background: #f5f5f5;
    color: #757575;
}

/* Payment Status Badges */
.status-badge.payment-status.pending {
    background: #fff3e0;
    color: #ef6c00;
}

.status-badge.payment-status.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.payment-status.failed {
    background: #ffebee;
    color: #c62828;
}

/* Job Stats */
.job-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Job Actions */
.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-actions .btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No Jobs State */
.no-jobs {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-jobs i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-jobs p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .filters-form {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
        width: 100%;
    }

    .filter-actions .btn {
        width: 100%;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .job-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .job-actions {
        flex-direction: column;
    }

    .job-actions .btn {
        width: 100%;
    }
}